美文网首页
egret 解决iOS后台不播放声音问题

egret 解决iOS后台不播放声音问题

作者: Zszen | 来源:发表于2020-03-31 21:12 被阅读0次

h5代码

<audio id="audio" autoplay="true" controls="" loop=""preload="preload">
                <source src="声音路径" type="audio/mpeg">
</audio>

js代码

function JS_play_sfx(src){
  $("#audio").attr("src", src);
}

ts对接

/**播放音乐 */
declare function JS_play_sfx(sfx:string);

调用

JS_play_sfx("音频路径")

音频路径为网址访问路径, ./resource/文件xxxx

http://www.mamicode.com/info-detail-1030084.html

相关文章

网友评论

      本文标题:egret 解决iOS后台不播放声音问题

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