liting2017 6 years ago
parent
commit
fe81c76e51
2 changed files with 5 additions and 3 deletions
  1. 1 0
      src/css/videoDetail.css
  2. 4 3
      src/js/videoDetail.js

+ 1 - 0
src/css/videoDetail.css

@@ -37,6 +37,7 @@ body{
 }
 .videoBody .videoCenter .videoPlay #videoDe{
     width:900px;
+    max-height: 506px;
 }
 .videoList{
     padding: 20px;

+ 4 - 3
src/js/videoDetail.js

@@ -23,7 +23,8 @@ $(function(){
         document.querySelector('.qqHy').onclick=function(){
             let title = $('.videoList li.active .txt h4').text(),
                 img=$('.videoList li.active img').attr('src');
-                shareQQ_friend(title, window.location.href, img)
+               shareQQ_friend(title, window.location.href, img)
+              
         }; 
         //qq
         document.querySelector('.qqKj').onclick=function(){
@@ -68,10 +69,10 @@ $(function(){
     }
     //qq好友
     function shareQQ_friend(_title,_url,picurl){
-        var _shareUrl = 'https://connect.qq.com/widget/shareqq/iframe_index.html?';
+        var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
             _shareUrl += 'url=' + encodeURIComponent(_url);   //分享的链接
             _shareUrl += '&title=' + encodeURIComponent(_title);     //分享的标题
             _shareUrl+='&pics=' + encodeURIComponent(picurl)
-        window.open(_shareUrl,'_blank');
+            window.open(_shareUrl,'_blank','height=520, width=720');
     }
 })