|
@@ -466,7 +466,7 @@
|
|
|
>
|
|
|
<BtnBack
|
|
|
class="scene-back"
|
|
|
- @click="isShowScenePage = false"
|
|
|
+ @click="closeScene()"
|
|
|
/>
|
|
|
<iframe
|
|
|
src="https://www.4dkankan.com/spg.html?m=KJ-et2X3su4ofm"
|
|
@@ -508,6 +508,19 @@ const isShowScenePage = ref(false)
|
|
|
|
|
|
const isShowToastFromGame = ref(false)
|
|
|
|
|
|
+
|
|
|
+const OpenScene = () => {
|
|
|
+ isShowScenePage.value = true
|
|
|
+ const musicDom = document.getElementById('bg-music')
|
|
|
+ musicDom.pause()
|
|
|
+}
|
|
|
+
|
|
|
+const closeScene = () => {
|
|
|
+ isShowScenePage.value = false
|
|
|
+ const musicDom = document.getElementById('bg-music')
|
|
|
+ musicDom.play()
|
|
|
+}
|
|
|
+
|
|
|
const input1 = ref("")
|
|
|
const input2 = ref("")
|
|
|
const input1Ref = ref(null)
|