Browse Source

优化VIDEO

liting2017 6 years ago
parent
commit
14ea069e5a
6 changed files with 25 additions and 24 deletions
  1. 3 0
      src/css/inded.css
  2. 3 1
      src/css/newMenu/header.css
  3. 1 0
      src/css/register.css
  4. 12 2
      src/css/video.css
  5. 5 20
      src/js/newMenu/index.js
  6. 1 1
      src/js/video.js

+ 3 - 0
src/css/inded.css

@@ -201,6 +201,9 @@ border-radius: 5px;margin-top:15px;/*float: right;*/margin-left:78px;text-align:
     top: 45%;
     transform: translateY(-50%);
 }
+.pub_fix{
+    z-index: 999999;
+}
 @media screen and (max-width:1600px){
     .initModel .ljZhuCe{
         font-size: 26px!important;

+ 3 - 1
src/css/newMenu/header.css

@@ -582,5 +582,7 @@ a[title]{
     top: -80px;
     left: -80px;
 }
-
+img{
+    border: none;
+}
 

+ 1 - 0
src/css/register.css

@@ -204,6 +204,7 @@ padding: 20px 50px;overflow-y: auto;box-shadow: 0 4px 10px 0 #777;}
     color: #2ca7f3;
 }
 .cont_left img{
+    border: none;
     width: 40px;
     height: 40px;
     display: inline-block;

+ 12 - 2
src/css/video.css

@@ -126,10 +126,20 @@ body {
     height: 100%;
     top: 0;
     left: 0;
-    background: rgba(0, 0, 0, .3);
+    background: transparent;
     display: none
 }
-
+.input-group-btn button{
+    box-shadow: none!important;
+    background: #1697e9!important;
+    color: #fff!important;
+}
+.input-group-btn button:hover,.input-group-btn button:focus{
+    background: #1697e9;
+    color: #fff;
+    outline: none;
+    box-shadow: none;
+}
 .videoPlay.active {
     display: block
 }

+ 5 - 20
src/js/newMenu/index.js

@@ -1,10 +1,8 @@
-// import 'css/bootstrap.less';
 import 'bootstrap/dist/js/bootstrap.js';
 import 'css/newMenu/public.css';
 import 'css/newMenu/header.css'
 import 'css/newMenu/index.css';
 import 'css/inded.css';
-//import 'js/banner.js';
 import 'js/public.js';
 
 (function(){
@@ -13,19 +11,15 @@ import 'js/public.js';
     function init(){
         banner();
     };
-    //轮播
     navTop();
     function navTop() {
         $(window).scroll(function(){
             var scrolltop=$(document).scrollTop();
-                if(scrolltop>0){
-                    $('.topNav').addClass('navFix')
-                }else{
-                    $('.topNav').removeClass('navFix');
-				}
-				videoAuto();
+			$('.topNav')[scrolltop>0?'addClass':'removeClass']('navFix');
+			videoAuto();
         });
-    }
+	}
+	 //轮播
     function banner(){
          $('#myCarousel').carousel({
             interval: 4000
@@ -38,18 +32,9 @@ import 'js/public.js';
 	})
 	//搜索功能
 	$(".searchImg").click(function(){
-		//var seachon=$(".jumpType li.active").index();
 		var key=$('.demandSearch').val();
 		sessionStorage.setItem("name",key);
 		window.open(globalConfig.context + `/portal/search.html`);
-//		switch(seachon){
-//			case 0:window.open(globalConfig.context + `/portal/technologyTrading/achievementList.html?name=${key}`);break;
-//			case 1:window.open(globalConfig.context + `/portal/technologyTrading/demandList.html?name=${key}`);break;
-//          case 2:window.open(globalConfig.context + `/portal/service/patentList?name=${key}`);break;
-//          case 3:window.open(globalConfig.context + `/portal/thinkTank/policyList?name=${key}`);break;
-//          case 4:window.open(globalConfig.context + `/portal/service/serviceList?name=${key}`);break;
-//			default :break;
-//		}
 	})
 	function task(){
 		if($(".brands>div>img:nth-child(1)").hasClass("active")){
@@ -92,7 +77,7 @@ import 'js/public.js';
 		let videoH = $('.wield_cont')[0],
 		clentH = videoH.getBoundingClientRect();
 		if(clentH.top < (document.documentElement.clientHeight+200)){
-			if(status){
+			if(status){   //只自动播放一次
 				myVideo.play();
 				status=false;
 			}

+ 1 - 1
src/js/video.js

@@ -10,6 +10,7 @@ $(function () {
         thePageNo = 1,
         nutt = 0,
         videoHtml = '',
+        name='',
         thePageLength = 1,
         noLength = `<div class="noLength"></div>`;
     init();
@@ -119,7 +120,6 @@ $(function () {
                 return false;
             }
             nutt = $(this).index();
-            console.log(nutt)
             let urls = $(this).find('input').val();
             videoHtml = `<source src="http://118.190.205.7:8000${urls}" type="video/mp4">`;
             $('.videoPlay').show(100);