tremble %!s(int64=3) %!d(string=hai) anos
pai
achega
3d523e73e6

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 0
public/SuperTwo/hotspot1/css/app.89954e0f.css


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 1
public/SuperTwo/hotspot1/index.html


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 2 - 0
public/SuperTwo/hotspot1/js/app.bb48db46.js


A diferenza do arquivo foi suprimida porque é demasiado grande
+ 1 - 0
public/SuperTwo/hotspot1/js/app.bb48db46.js.map


+ 3 - 2
src/App.vue

@@ -16,7 +16,7 @@ export default {
   data(){
     return {
       isWel:true,
-      changZINDEX:-1,
+      changZINDEX:-10000,
       startplay:''
     }
   },
@@ -31,7 +31,7 @@ export default {
 
     this.$bus.$on('closeWel', ()=>{
       this.isWel = true
-      this.changZINDEX = -1
+      this.changZINDEX = -10000
     })
   }
 };
@@ -49,6 +49,7 @@ export default {
 }
 .fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
   opacity: 0;
+  z-index: -10000;
 }
 
 .welcls{

+ 6 - 2
src/components/welcome.vue

@@ -1,5 +1,5 @@
 <template>
-  <div class="welcome">
+  <div class="welcome" :style="{visibility:isShow?'visible':'hidden'}">
     <video ref="welcome" :src="require(`@/assets/videos/OPvss.mp4`)"></video>
     <div
       @click="handleJump"
@@ -19,12 +19,14 @@ export default {
   data() {
     return {
       showJump: "",
+      isShow:false
     };
   },
   watch: {
     startplay(newVal) {
       if (newVal) {
         this.$refs.welcome.play();
+        this.isShow = true
       }
     },
   },
@@ -32,6 +34,8 @@ export default {
     handleJump() {
       this.$bus.$emit("closeWel", true);
       this.$refs.welcome.pause();
+      this.$refs.welcome.currentTime = 0;
+      this.isShow = false
     },
   },
   mounted() {
@@ -39,7 +43,7 @@ export default {
       if (this.$refs.welcome) {
         this.$refs.welcome &&
           this.$refs.welcome.addEventListener("ended", () => {
-            this.$bus.$emit("closeWel", true);
+            this.handleJump()
           });
       }
       window.addEventListener("message", (res) => {