美文网首页
uni-app 添加背景音乐

uni-app 添加背景音乐

作者: yimi珊 | 来源:发表于2021-04-23 09:46 被阅读0次

首页

        <button type="default" class="music" @click="playVoice(lastRecord,isPlay)">
            <image src="../../static/music.png" mode=""></image>
        </button>
        data() {
            return {
                isPlay: false
            }
        },
        onLoad() {
            this.innerAudioContext = uni.createInnerAudioContext();
            this.playVoice('music.mp3')
            uni.$on('changePlay', isPlay => {
                this.playVoice(this.lastRecord, this.isPlay)
            })
        },
        methods: {
            playVoice(url, isPlay) { // url即为音频路径
                if (url) {
                    this.lastRecord = url; // 将路径赋值给定义的变量好做判断
                    this.innerAudioContext.src = url; // 配置音频播放路径
                    this.innerAudioContext.play(); // 播放
                    this.innerAudioContext.loop = true; // 是否循环播放
                }
                this.isPlay = !this.isPlay;
                if (isPlay) {
                    this.innerAudioContext.pause(); // 停止
                }
            }
        }

其他页面也想控制这个音乐按钮
我看app.vue不支持写template ,所以就每个页面都写了一下这个按钮,然后通过emit,on来传递数据

<button type="default" class="music" @click="playVoice()">
            <image src="../../static/music.png" mode=""></image>
        </button>
playVoice() {
                uni.$emit('changePlay', 1);
            },

没去写看公共的方法,就酱吧,我累了...

相关文章

网友评论

      本文标题:uni-app 添加背景音乐

      本文链接:https://www.haomeiwen.com/subject/zbefrltx.html