Commit 73cbe31f by vito

add audio

parent c85c64a7
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
- 本抽奖程序无暗箱操作,无后台,无后门。 - 本抽奖程序无暗箱操作,无后台,无后门。
- 名单和照片显示只需导入一种即可,无导入数据则使用抽奖号码。 - 名单和照片显示只需导入一种即可,无导入数据则使用抽奖号码。
- 建议使用最新的 Chrome 浏览器打开体验最佳。 - 建议使用最新的 Chrome 浏览器打开体验最佳。
- 由于背景游戏音乐加载较慢,可以在抽奖前提前打开缓存好。
## License ## License
......
...@@ -68,7 +68,15 @@ ...@@ -68,7 +68,15 @@
</div> </div>
</transition> </transition>
<el-button class="audio" type="text" @click="audioPlaying = !audioPlaying"> <el-button
class="audio"
type="text"
@click="
() => {
playAudio(!audioPlaying);
}
"
>
<i <i
class="iconfont" class="iconfont"
:class="[audioPlaying ? 'iconstop' : 'iconplay1']" :class="[audioPlaying ? 'iconstop' : 'iconplay1']"
...@@ -96,6 +104,7 @@ ...@@ -96,6 +104,7 @@
autoplay autoplay
loop loop
@play="playHandler" @play="playHandler"
@pause="pauseHandler"
> >
<source :src="audioSrc" /> <source :src="audioSrc" />
你的浏览器不支持audio标签 你的浏览器不支持audio标签
...@@ -231,9 +240,6 @@ export default { ...@@ -231,9 +240,6 @@ export default {
this.reloadTagCanvas(); this.reloadTagCanvas();
}); });
} }
},
audioPlaying(v) {
this.playAudio(v);
} }
}, },
mounted() { mounted() {
...@@ -246,6 +252,9 @@ export default { ...@@ -246,6 +252,9 @@ export default {
playHandler() { playHandler() {
this.audioPlaying = true; this.audioPlaying = true;
}, },
pauseHandler() {
this.audioPlaying = false;
},
playAudio(type) { playAudio(type) {
if (type) { if (type) {
this.$el.querySelector('#audiobg').play(); this.$el.querySelector('#audiobg').play();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment