liting2017 6 years ago
parent
commit
e129908de2
2 changed files with 6 additions and 11 deletions
  1. 4 4
      src/css/newMenu/header.css
  2. 2 7
      src/js/public.js

+ 4 - 4
src/css/newMenu/header.css

@@ -513,19 +513,19 @@ input:focus{
     font-size: 40px;
     color: #1697ea;
     opacity: 0;
-    transition: all .8s ease-in;
+    z-index: 99999;
+    transition: all 0s ease-in;
 }
 .signin a:nth-child(2):hover{
     color:#f00;
 }
 .shopIcon .tint.active{
+    opacity: 1;
     position: absolute;
     top: 20px!important;
     left: 20px!important;
-    opacity: 0;
     font-size: 5px;
-    display: block;
-    transition: all .8s ease-in-out
+    transition: all .5s ease-in;
 }
 /* 网站导航 */
 .navWrapper{

+ 2 - 7
src/js/public.js

@@ -474,20 +474,15 @@ window.onload=function(){
             }
         })
         //购物动作
-        $('.shopIcon .tint').hide();
         $('.shopCar').click(function(){
             if( $('.shopIcon .tint').hasClass('active')){
                 return false;
             }else{
 				btnFn();
 				getLoc();
-
-				$('.shopIcon .tint').show();
-				$('.shopIcon .tint').css({'opacity':1})
-                $('.shopIcon .tint').addClass('active');
+				$('.shopIcon .tint').addClass('active');
                 setTimeout(()=>{
-                    $('.shopIcon .tint').removeClass('active');
-                    $('.shopIcon .tint').hide();
+                    $('.shopIcon .tint').removeClass('active')
                 },800)
             }
 		})