做消息推送有提示音。 由于google默认不播放音频,除非有鼠标,键盘事件触发才播放,所以给页面头部加了一个按钮是否打开消息提示音。触发后开启音频调用音频方法。(当你打开一次音频后,后面消息推送过来在播放音频是可以的) vue中<audio controls ref="audio" src="../ass/"></audio> { this.$refs.audio.muted = true; //音频静音 this.$refs.audio.currentTime = 0; // 从头开始播放 this.$refs.audio.play(); // 播放音频 } 消息推送过来的方法 { this.$refs.audio.muted = ; //音频有声音 this.$refs.audio.currentTime = 0; // 从头开始播放 this.$refs.audio.play(); // 播放音频 }
标签:推送,音频,提示音,播放,audio,refs From: https://www.cnblogs.com/whlBooK/p/16785555.html