微信端和手机不能支持自动播放问题

Audio在移动端的兼容性问题
https://www.jianshu.com/p/b26cdf3a96f2?from=timeline&isappinstalled=0
https://www.jianshu.com/p/1b94dde73574

/* function audioAutoPlay(id){
	var audio = document.getElementById(id),
	play =function(){
		audio.play();
		document.removeEventListener("touchstart",play,false);
	};
	audio.play();
	document.addEventListener("WeixinJSBridgeReady",function() {
		play();
	},false);
	document.addEventListener('YixinJSBridgeReady',function() {
		play();
	},false);
	document.addEventListener("touchstart",play,false);
}
audioAutoPlay('myaudio');
var isPlaying = myaudio.currentTime > 0 && !myaudio.paused && !myaudio.ended && myaudio.readyState > 2;
if (!isPlaying) {
	setTimeout(function () {
		myaudio.play().catch(function (e) {
			console.log("", e.message);
			console.log("", e.description);
		});
	}, 150);
} else {
	alert("网络缓慢,正在加载音频...");
} */

The play() request was interrupted by a call to pause()

play() failed because the user didn’t interact with the document first.

一个项目源码;
https://github.com/orbem/vue-music-webapp

https://github.com/orbem/vue-music-webapp/blob/master/src/App.vue

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值