Browse Source

banner bug

liting2017 6 years ago
parent
commit
065e613dcc

+ 5 - 4
src/css/newMenu/patent.css

@@ -261,6 +261,7 @@
     display: -webkit-flex;
     justify-content: space-between;
     margin-bottom: 70px;
+    border: 1px solid #e0e0e0;
 }
 .newRelease li{
     width: 25%;
@@ -268,12 +269,12 @@
     position: relative;
     z-index: 20;
 }
-.newRelease li:first-child .txt{
+/* .newRelease li:first-child .txt{
     border-left: 1px solid #e0e0e0;
 }
 .newRelease li:last-child .txt{
     border-right: 1px solid #e0e0e0;
-}
+} */
 .newRelease li:nth-child(2n) .newReleaseImgs{
     width: 100%;
     height: 162px;
@@ -301,7 +302,7 @@
     bottom: 0;
     left: 0;
     z-index: 26;
-    border-bottom: 1px solid #e0e0e0;
+    /* border-bottom: 1px solid #e0e0e0; */
 }
 .newRelease li:nth-child(2n) .txt{
     width: 100%;
@@ -310,7 +311,7 @@
     top: 0;
     left: 0;
     z-index: 26;
-    border-top: 1px solid #e0e0e0;
+    /* border-top: 1px solid #e0e0e0; */
 }
 .newRelease li:nth-child(2n+1) .txt .triangle_border_up{
     position: absolute;

+ 6 - 0
src/js/newMenu/achievement.js

@@ -13,6 +13,7 @@ $(function(){
         nav();
         searchFun();
         navTop();
+        banner()
     }
     function navTop() {
         $(window).scroll(function(){
@@ -24,6 +25,11 @@ $(function(){
                 }
         });
     }
+    function banner(){
+        $('#myCarousel').carousel({
+           interval: 4000
+       })
+   };
     //二级导航
     function nav() {
         $('.nav ul li').mouseenter(function () {

+ 6 - 0
src/js/newMenu/demand.js

@@ -15,6 +15,7 @@ $(function () {
         nav();
         searchFun();
         navTop();
+        banner()
     }
     function navTop() {
         $(window).scroll(function(){
@@ -26,6 +27,11 @@ $(function () {
                 }
         });
     }
+    function banner(){
+        $('#myCarousel').carousel({
+           interval: 4000
+       })
+   };
     //二级导航
     function nav() {
         $('.nav ul li').mouseenter(function () {

+ 6 - 1
src/js/newMenu/patent.js

@@ -12,6 +12,7 @@ $(function(){
         navTop();
         MenuFun();
         searchFun();
+        banner();
         $('.firstMenu ul li').removeClass('active');
     }
     //导航
@@ -26,7 +27,11 @@ $(function(){
         });
     }
     //菜单切换
-   
+    function banner(){
+        $('#myCarousel').carousel({
+           interval: 4000
+       })
+   };
     function MenuFun(){
         $('.firstMenu ul li').mouseenter(function(){
             $('.secondMenu').addClass('active');

+ 6 - 0
src/js/newMenu/services.js

@@ -13,6 +13,7 @@ $(function () {
         listFun();
         search();
         navTop();
+        banner()
     };
 
     function navTop() {
@@ -25,6 +26,11 @@ $(function () {
                 }
         });
     }
+    function banner(){
+        $('#myCarousel').carousel({
+           interval: 4000
+       })
+   };
     // search
     function search() {
         $('.searchBtn').click(function () {

+ 6 - 0
src/js/newMenu/tradingIndex.js

@@ -9,6 +9,7 @@ import 'js/public.js';
 
 $(function(){
     navTop();
+    banner();
     function navTop() {
         $(window).scroll(function(){
             var scrolltop=$(document).scrollTop();
@@ -19,4 +20,9 @@ $(function(){
                 }
         });
     }
+    function banner(){
+        $('#myCarousel').carousel({
+           interval: 4000
+       })
+   };
 })