shaogen1995 10 months ago
parent
commit
58779d0e10

BIN
scene/public/code.png


+ 1 - 17
scene/public/static/js/main_2020_show.js

@@ -6653,23 +6653,7 @@ window.Modernizr = function(n, e, t) {
                     }),
                     t.goToHighlight([i.data("index"),0])
                     //改
-                }),
-
-                // 手动触发 导览列表点击
-                $("#myClickBox #go").on('click',function(){
-                    const imgActIndex = $(".thumbImg.active").data('index')
-                    const curIndex = typeof imgActIndex === 'number' ? imgActIndex : -1;
-                    const nextIndex = Number(curIndex) + 1;
-                    if (nextIndex >= Fe) return
-                    t.goToHighlight([nextIndex,0])
-                })
-                $("#myClickBox #back").on('click',function(){
-                    const imgActIndex = $(".thumbImg.active").data('index')
-                    const curIndex = typeof imgActIndex === 'number' ? imgActIndex : -1;
-                    const nextIndex = Number(curIndex) - 1;
-                    if (nextIndex < 0) return
-                    t.goToHighlight([nextIndex,0])
-                })
+                }), 
 
                 $(".previous").find("a").on("click", function(e) {
                     l(e),

BIN
scene/src/assets/img/logo0.png


+ 1 - 1
scene/src/pages/Home.vue

@@ -80,7 +80,7 @@
     </div>
 
     <!-- 左上方logo -->
-    <div class="leftTopLogo">
+    <div class="leftTopLogo" v-show="!isMobile">
         <img class="leftTopLogo1" src="../assets/img/home/logo.png" alt="" />
 
       <div class="leftTopLogo2"></div>

+ 10 - 32
scene/src/views/gui/menu.vue

@@ -4,10 +4,7 @@
       <div id="view-controllers"></div>
     </div>
     <div class="pinBottom left">
-      <div v-if="isMobile" id='myClickBox' style="">
-        <div id="go" />
-        <div id="back" />
-      </div>
+
 
       <div>
         <div class="viewContainer">
@@ -268,22 +265,22 @@ export default {
       musicState: false,
       // vr---热点列表---分享
       openInd: 0,
-      musicTime:-1,
+      // musicTime:-1,
     };
   },
   watch: {},
   computed: {},
   mounted() {
 
-    this.musicTime= setInterval(() => {
-      try {
-        this.switchBGM(true)
-        clearInterval(this.musicTime)
-      } catch (error) {
-        console.log(error);
+    // this.musicTime= setInterval(() => {
+    //   try {
+    //     this.switchBGM(true)
+    //     clearInterval(this.musicTime)
+    //   } catch (error) {
+    //     console.log(error);
         
-      }
-    }, 500);
+    //   }
+    // }, 500);
 
   },
   methods: {
@@ -528,24 +525,5 @@ export default {
     }
   }
 }
-#myClickBox{
-  display: flex;
-  flex-direction: column;
-  position: fixed;
-  z-index: 999;
-  left: 50%;
-  bottom: 38px;
-  width: 146px;
-  height: 146px;
-  transform: translateX(-50%);
-  background: url('../../assets/img/m_btn.png') no-repeat center / contain;
-  transition: .2s bottom linear;
 
-  > div {
-    flex: 1;
-  }
-}
-.pinBottom.open #myClickBox {
-  bottom: calc(118px + 20px);
-}
 </style>

+ 4 - 0
scene/src/views/gui/title.vue

@@ -116,4 +116,8 @@ export default {};
     rgba(200, 160, 99, 0.2)
   ) 
 }
+#title-logo i {
+  background: url('../../assets/img/logo0.png') left top no-repeat;
+  background-size: 100% 100%;
+}
 </style>