Browse Source

更改首页左侧浮框 回到顶部 交互

zdd 6 years ago
parent
commit
42f1ed07d5

+ 2 - 2
CZKJ.GBRS2.WebMVC/Views/Home/Index.cshtml

@@ -521,7 +521,7 @@
521 521
     <li class="foo" onclick="window.scrollTo(0,0)">返回顶部</li>
522 522
 </ul>
523 523
 <!-- 右侧浮框 -->
524
-<ul class="rightPop">
524
+@*<ul class="rightPop">
525 525
     <li class="b">
526 526
         <a href="javascript:void(0);"><img src="/assets/homeImg/wx.png" alt=""></a>
527 527
         <div class="rightShow">
@@ -540,7 +540,7 @@
540 540
     <li class="b" onclick="window.scrollTo(0,0)">
541 541
         <a href="javascript:void(0);"><img src="/assets/homeImg/jt1.png" alt=""></a>
542 542
     </li>
543
-</ul>
543
+</ul>*@
544 544
 
545 545
 
546 546
 

+ 6 - 6
CZKJ.GBRS2.WebMVC/Views/Shared/_Layout.cshtml

@@ -36,7 +36,7 @@
36 36
                 height: 50px;
37 37
                 text-align: center;
38 38
                 line-height: 50px;
39
-                background: #f15558;
39
+                background: #00923f;
40 40
                 margin-bottom: 5px;
41 41
                 position: relative;
42 42
                 cursor: pointer;
@@ -78,7 +78,7 @@
78 78
 
79 79
                 .rightPopUp .leftPopUp span {
80 80
                     font-size: 14px;
81
-                    color: #f15558;
81
+                    color: #00923f;
82 82
                     line-height: 0;
83 83
                     line-height: 0px !important;
84 84
                 }
@@ -89,8 +89,8 @@
89 89
                     line-height: 34px !important;
90 90
                     text-align: center;
91 91
                     border-radius: 2px;
92
-                    border: 1px solid #f15558;
93
-                    color: #f15558;
92
+                    border: 1px solid #00923f;
93
+                    color: #00923f;
94 94
                     font-size: 14px;
95 95
                     line-height: 0px;
96 96
                     display: inline-block;
@@ -153,7 +153,7 @@
153 153
     </div>*@
154 154
 
155 155
     @*右侧浮栏*@
156
-    @*<div class="rightPopUp">
156
+    <div class="rightPopUp">
157 157
         <ul>
158 158
             <li class="showTelIcon">
159 159
                 <img src="/assets/image/rightPopUp/telIcon.png" alt="" />
@@ -188,7 +188,7 @@
188 188
                 <img src="/assets/image/rightPopUp/returnTop.png" alt="" />
189 189
             </li>
190 190
         </ul>
191
-    </div>*@
191
+    </div>
192 192
     <!-- public js -->
193 193
     <script src="/assets/plugins/jquery.js"></script>
194 194
     <script src="/assets/js/common.js"></script>

+ 2 - 2
CZKJ.GBRS2.WebMVC/appsettings.json

@@ -26,8 +26,8 @@
26 26
     "Website": "www.guobaojinrong.com"
27 27
   },
28 28
   "ConnectionStrings": {
29
-    //"Development": "Data Source=sp5045a8d445fe0.mysql.rds.aliyuncs.com;user id=gbrs2_dba;password=CZKJczkj2016gbrs2;Initial Catalog=gbrs2"
30
-    "Development": "Data Source=10.237.55.203;user id=ow_dl;password=6hioO78*1$;Initial Catalog=ow"
29
+    "Development": "Data Source=sp5045a8d445fe0.mysql.rds.aliyuncs.com;user id=gbrs2_dba;password=CZKJczkj2016gbrs2;Initial Catalog=gbrs2"
30
+    //"Development": "Data Source=10.237.55.203;user id=ow_dl;password=6hioO78*1$;Initial Catalog=ow"
31 31
   },
32 32
   //"CoreQuery": {
33 33
   //  "CustomerType": "0",

+ 3 - 3
CZKJ.GBRS2.WebMVC/wwwroot/assets/css/base.css

@@ -967,9 +967,9 @@ i {
967 967
     text-align: center;
968 968
 }
969 969
 
970
-.footer .inputs a:hover {
971
-  background: #ed4747;
972
-}
970
+    .footer .inputs a:hover {
971
+        background: #00923f;
972
+    }
973 973
 
974 974
 .footer .copy {
975 975
     padding: 10px 0;

+ 9 - 1
CZKJ.GBRS2.WebMVC/wwwroot/assets/js/newIndex.js

@@ -25,7 +25,7 @@ $(window).scroll(function () {
25 25
     scrollCur('love');
26 26
     scrollCur('special');
27 27
 
28
-    // 滚动选中
28
+    // 左侧浮框滚动选中
29 29
     function scrollCur(e) {
30 30
         if ($('#' + e).offset().top * 0.8 < h && $('#' + e).offset().top + $('#' + e).height() * 0.3 > h) {
31 31
             $('.leftPop .' + e).addClass('b').siblings().removeClass('b');
@@ -33,6 +33,14 @@ $(window).scroll(function () {
33 33
             $('.leftPop .' + e).removeClass('b');
34 34
         }
35 35
     }
36
+
37
+
38
+    //判断等到底部后 回到顶部 按钮选中
39
+    if ($(window).scrollTop() + $(window).height() === $(document).height()) {
40
+        $('.leftPop .foo').addClass('b');
41
+    } else {
42
+        $('.leftPop .foo').removeClass('b');
43
+    }
36 44
 })
37 45
 $('.head').click(function () {
38 46
     if ($('.leftPop .leftNav').css('display') == "none") {