update
This commit is contained in:
@@ -6,6 +6,8 @@ import { globalStore } from "../globalstore.js";
|
|||||||
import Login from '../components/Login.vue'
|
import Login from '../components/Login.vue'
|
||||||
import { isWeixin, isLogin, getParam, Storage, Request } from "../libs/utils"
|
import { isWeixin, isLogin, getParam, Storage, Request } from "../libs/utils"
|
||||||
import Lottery from '../components/Lottery.vue';
|
import Lottery from '../components/Lottery.vue';
|
||||||
|
import { Howl, Howler } from 'howler';
|
||||||
|
|
||||||
|
|
||||||
import PrizeList from "./PrizeList.vue"
|
import PrizeList from "./PrizeList.vue"
|
||||||
import Rule from "./Rule.vue";
|
import Rule from "./Rule.vue";
|
||||||
@@ -22,7 +24,7 @@ const props = defineProps({
|
|||||||
show: true
|
show: true
|
||||||
})
|
})
|
||||||
|
|
||||||
const isMusicOn = ref(true);
|
const isMusicOn = ref(false);
|
||||||
const audioElement = ref(null);
|
const audioElement = ref(null);
|
||||||
const videoElement = ref(null);
|
const videoElement = ref(null);
|
||||||
const videoLoaded = ref(false);
|
const videoLoaded = ref(false);
|
||||||
@@ -62,35 +64,38 @@ const fromShare = async () => {
|
|||||||
// 初始化全局音频实例
|
// 初始化全局音频实例
|
||||||
const initGlobalAudio = () => {
|
const initGlobalAudio = () => {
|
||||||
if (!globalStore.globalAudio) {
|
if (!globalStore.globalAudio) {
|
||||||
globalStore.globalAudio = new Audio(bgm);
|
globalStore.globalAudio = new Howl({
|
||||||
globalStore.globalAudio.loop = true; // 设置循环播放
|
src: [bgm],
|
||||||
globalStore.globalAudio.preload = 'auto';
|
autoplay: true,
|
||||||
|
loop: true,
|
||||||
|
})
|
||||||
|
|
||||||
|
globalStore.globalAudio.on('load', () => {
|
||||||
|
window.WeixinJSBridge && window.WeixinJSBridge.invoke('getNetworkType', {}, () => {
|
||||||
|
globalStore.globalAudio.play()
|
||||||
|
}, false);
|
||||||
|
globalStore.globalAudio.play()
|
||||||
|
})
|
||||||
|
|
||||||
// 监听音频事件
|
// 监听音频事件
|
||||||
globalStore.globalAudio.addEventListener('play', () => {
|
globalStore.globalAudio.on('play', () => {
|
||||||
isMusicOn.value = true;
|
isMusicOn.value = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
globalStore.globalAudio.addEventListener('pause', () => {
|
globalStore.globalAudio.on('pause', () => {
|
||||||
isMusicOn.value = false;
|
isMusicOn.value = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
globalStore.globalAudio.addEventListener('ended', () => {
|
|
||||||
isMusicOn.value = false;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
audioElement.value = globalStore.globalAudio;
|
audioElement.value = globalStore.globalAudio;
|
||||||
|
|
||||||
// 同步当前音乐状态
|
// 同步当前音乐状态
|
||||||
isMusicOn.value = !globalStore.globalAudio.paused;
|
isMusicOn.value = !globalStore.globalAudio.paused;
|
||||||
};
|
};
|
||||||
|
initGlobalAudio()
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
window.addEventListener("WeixinJSBridgeReady", () => {
|
checkAndPlayAudio()
|
||||||
initGlobalAudio();
|
// checkAndPlayAudio();
|
||||||
})
|
|
||||||
initVideo();
|
|
||||||
checkAndPlayAudio();
|
|
||||||
})
|
})
|
||||||
|
|
||||||
// 检查并播放音频
|
// 检查并播放音频
|
||||||
@@ -136,7 +141,7 @@ const checkAndPlayAudio = () => {
|
|||||||
|
|
||||||
// 初始化视频
|
// 初始化视频
|
||||||
const initVideo = () => {
|
const initVideo = () => {
|
||||||
document.addEventListener('WeixinJSBridgeReady',()=>{
|
document.addEventListener('WeixinJSBridgeReady', () => {
|
||||||
videoElement.value && videoElement.value.play()
|
videoElement.value && videoElement.value.play()
|
||||||
})
|
})
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
@@ -360,6 +365,7 @@ const navigateGamePage = async () => {
|
|||||||
if (globalStore.game_chances <= 0) {
|
if (globalStore.game_chances <= 0) {
|
||||||
return weui.alert("还没有探索机会,快去参加活动吧")
|
return weui.alert("还没有探索机会,快去参加活动吧")
|
||||||
} else {
|
} else {
|
||||||
|
checkAndPlayAudio()
|
||||||
gameSwiperShow.value = true;
|
gameSwiperShow.value = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -386,7 +392,7 @@ const getUserLottery = async () => {
|
|||||||
const result = await Request("lottery", { pool: "all" }, "GET")
|
const result = await Request("lottery", { pool: "all" }, "GET")
|
||||||
if (result.res.status === 200) {
|
if (result.res.status === 200) {
|
||||||
prizelist.value = result.json.lottery_logs.length > 0 ? result.json.lottery_logs : []
|
prizelist.value = result.json.lottery_logs.length > 0 ? result.json.lottery_logs : []
|
||||||
if(prizelist.value.length===0){
|
if (prizelist.value.length === 0) {
|
||||||
weui.alert("您还没有中奖")
|
weui.alert("您还没有中奖")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -453,7 +459,7 @@ const handleAddress = (id) => {
|
|||||||
addressShow.value = true
|
addressShow.value = true
|
||||||
}
|
}
|
||||||
|
|
||||||
globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
globalToastEvent.on(ToastType.SHOW_ADDRESS, (id) => {
|
||||||
handleAddress(id)
|
handleAddress(id)
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -558,6 +564,7 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
.show-music-btn {
|
.show-music-btn {
|
||||||
z-index: 11;
|
z-index: 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
top: 4vw;
|
top: 4vw;
|
||||||
width: 24vw;
|
width: 24vw;
|
||||||
@@ -621,6 +628,7 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
background-position: 0 0;
|
background-position: 0 0;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.transparent-hole-cover {
|
.transparent-hole-cover {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 30vw;
|
width: 30vw;
|
||||||
@@ -630,6 +638,7 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
right: 8vw;
|
right: 8vw;
|
||||||
z-index: -2;
|
z-index: -2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.transparent-hole-cover-left {
|
.transparent-hole-cover-left {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 30vw;
|
width: 30vw;
|
||||||
@@ -639,6 +648,7 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
left: 8vw;
|
left: 8vw;
|
||||||
z-index: -2;
|
z-index: -2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item {
|
.scene-item {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -664,16 +674,19 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
top: 43.2vw;
|
top: 43.2vw;
|
||||||
left: 7.2vw;
|
left: 7.2vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-ma2 {
|
.item-ma2 {
|
||||||
width: 14vw;
|
width: 14vw;
|
||||||
top: 43.2vw;
|
top: 43.2vw;
|
||||||
right: 7.8vw;
|
right: 7.8vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-ma3 {
|
.item-ma3 {
|
||||||
width: 21vw;
|
width: 21vw;
|
||||||
top: 147vw;
|
top: 147vw;
|
||||||
left: 7vw;
|
left: 7vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-ma4 {
|
.item-ma4 {
|
||||||
width: 25vw;
|
width: 25vw;
|
||||||
top: 121vw;
|
top: 121vw;
|
||||||
@@ -686,6 +699,7 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
top: 58vw;
|
top: 58vw;
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-jiu2 {
|
.item-jiu2 {
|
||||||
width: 49vw;
|
width: 49vw;
|
||||||
top: 58vw;
|
top: 58vw;
|
||||||
@@ -733,18 +747,23 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
0% {
|
0% {
|
||||||
transform: translateY(0) translateX(0) scale(1) rotate(0deg);
|
transform: translateY(0) translateX(0) scale(1) rotate(0deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
20% {
|
20% {
|
||||||
transform: translateY(-2px) translateX(2px) scale(1.01) rotate(-1deg);
|
transform: translateY(-2px) translateX(2px) scale(1.01) rotate(-1deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
40% {
|
40% {
|
||||||
transform: translateY(0) translateX(3px) scale(1.01) rotate(1deg);
|
transform: translateY(0) translateX(3px) scale(1.01) rotate(1deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
60% {
|
60% {
|
||||||
transform: translateY(-3px) translateX(1px) scale(1.02) rotate(-0.5deg);
|
transform: translateY(-3px) translateX(1px) scale(1.02) rotate(-0.5deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
80% {
|
80% {
|
||||||
transform: translateY(0) translateX(0) scale(1.01) rotate(0.5deg);
|
transform: translateY(0) translateX(0) scale(1.01) rotate(0.5deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
transform: translateY(0) translateX(0) scale(1) rotate(0deg);
|
transform: translateY(0) translateX(0) scale(1) rotate(0deg);
|
||||||
}
|
}
|
||||||
@@ -780,36 +799,43 @@ globalToastEvent.on(ToastType.SHOW_ADDRESS,(id)=>{
|
|||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-xique2 img {
|
.scene-item.item-xique2 img {
|
||||||
animation: horse-gallop 1.7s infinite ease-in-out;
|
animation: horse-gallop 1.7s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-sidai img {
|
.scene-item.item-sidai img {
|
||||||
animation: horse-gallop 2.6s infinite ease-in-out;
|
animation: horse-gallop 2.6s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-jiu1 {
|
.scene-item.item-jiu1 {
|
||||||
animation: horse-gallop 2.4s infinite ease-in-out;
|
animation: horse-gallop 2.4s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-jiu2 {
|
.scene-item.item-jiu2 {
|
||||||
animation: horse-gallop 2.2s infinite ease-in-out;
|
animation: horse-gallop 2.2s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-lihe img {
|
.scene-item.item-lihe img {
|
||||||
animation: horse-gallop 2s infinite ease-in-out;
|
animation: horse-gallop 2s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-taozi img {
|
.scene-item.item-taozi img {
|
||||||
animation: horse-gallop 1.5s infinite ease-in-out;
|
animation: horse-gallop 1.5s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scene-item.item-hulu img {
|
.scene-item.item-hulu img {
|
||||||
animation: horse-gallop 1.8s infinite ease-in-out;
|
animation: horse-gallop 1.8s infinite ease-in-out;
|
||||||
animation-delay: -0.9s;
|
animation-delay: -0.9s;
|
||||||
|
|||||||
Reference in New Issue
Block a user