第1857天:html5 audio 语音播放在手机端使用注意,在家健身(76)

星期四 阴 22~31℃

html5 audio 语音播放在手机端使用注意

在手机端需要先播放,否则监听不到 canplay.
ios、android的chrome

var player = $(‘audio’).get(0);
//var ios = (/(ipod|iphone|ipad)/i).test(navigator.userAgent);
var mobile = !!navigator.userAgent.match(/AppleWebKit.*Mobile./);
if (mobile) {
 player.play();
}
player.addEventListener(‘canplay’, function() {
 // …
});

扩展阅读:
http://kolber.github.io/audiojs/
http://leiyongping88.iteye.com/blog/1831145


在家健身(76)

小区里慢跑 6 圈,25 分钟左右。

RSS

上一篇:

下一篇:

发表评论

电子邮件地址不会被公开。 必填项已用*标注