Ver código fonte

再次提交官网

Lijy 2 anos atrás
pai
commit
0a3922df64

+ 12 - 0
fhKeeper/formulahousekeeper/inva_4_tivo/css/index.css

@@ -71,6 +71,7 @@
 .product {
     width: 100%;
     position: fixed;
+    z-index: 10;
     top: 6.25rem;
     left: 0;
     background: #fff;
@@ -767,3 +768,14 @@ body {
     width: 100%;
 }
 
+.mengban {
+    width: 100%;
+    height: 200px;
+    background: #000;
+    opacity: .4;
+    position: absolute;
+    top: 148px;
+    left: 0;
+    z-index: 1;
+}
+

BIN
fhKeeper/formulahousekeeper/inva_4_tivo/image/bannar1.gif


BIN
fhKeeper/formulahousekeeper/inva_4_tivo/image/bannar1.jpg


BIN
fhKeeper/formulahousekeeper/inva_4_tivo/image/gongshi.jpg


+ 6 - 2
fhKeeper/formulahousekeeper/inva_4_tivo/index.html

@@ -86,7 +86,8 @@
     
     <!-- 轮播图 -->
     <div class="bannar">
-        <img src="./image/bannar1.jpg" style="width: 100%;" alt="">
+        <!-- <img src="./image/bannar1.jpg" style="width: 100%;" alt=""> -->
+        <img src="./image/bannar1.gif" style="width: 100%;" alt="">
     </div>
 
     <!-- 系统管理 -->
@@ -96,7 +97,7 @@
             <div class="connont">
                 <div class="manContent">
                     <img id="jiesaoImg" src="./image/gsgj.png" alt="" style="padding-top: 300px;">
-                    <p id="jiesaoP" style="opacity: 0;">智能系统管理  你的<span>工时管家</span></p>
+                    <p id="jiesaoP" style="opacity: 0;">化繁为简  只需一个<span>工时管家</span></p>
                 </div>
             </div>
         </div>
@@ -284,6 +285,7 @@
             <h2>来自客户的认可</h2>
             <div class="conImg">
                 <div class="conImgCon">
+                    <div class="mengban"></div>
                     <img src="./image/kehu1.jpg" alt="">
                     <div class="conImgConImg">
                         <img src="./image/ions/chengdu.png" alt="">
@@ -301,6 +303,7 @@
                     </div>
                 </div>
                 <div class="conImgCon">
+                    <div class="mengban"></div>
                     <img src="./image/kehu2.jpg" alt="">
                     <div class="conImgConImg">
                         <img src="./image/ions/xinchun.png" alt="">
@@ -317,6 +320,7 @@
                     </div>
                 </div>
                 <div class="conImgCon">
+                    <div class="mengban"></div>
                     <img src="./image/kehu3.jpg" alt="">
                     <div class="conImgConImg">
                         <img src="./image/ions/tanggu.png" alt="">

+ 16 - 2
fhKeeper/formulahousekeeper/inva_4_tivo/js/index.js

@@ -1,6 +1,19 @@
 // 产品鼠标移入移出
-$('#productHov').hover(function () {$("#product").show()},function () {$("#product").hide()})
-$('#product').hover(function () {$("#product").show()},function () {$("#product").hide()})
+let fls = true
+$('#productHov').hover(function () {$("#product").show()},function () {
+    setTimeout(function() {
+        if(fls) {
+            $("#product").hide()
+        }
+    }, 200)
+})
+$('#product').hover(function () {
+    fls = false
+    $("#product").show()
+},function () {
+    fls = true
+    $("#product").hide()
+})
 
 // 导航下划线
 $('.aus li').hover(function () {
@@ -9,6 +22,7 @@ $('.aus li').hover(function () {
 },function () {
     let i = $(this).index()
     $(".aus li").eq(i).removeClass('tils')
+
 })
 
 $('.auss li').hover(function () {