iTakeo

html2canvas截图时,背景音乐重复播放问题。

当在用html2canvas截图的时候,如果当前有背景音乐自动播放,在IOS 11的版本中,会出现重复播放问题。

if(navigator.userAgent.match(/iphone/i)){  
    var verinfo = navigator.userAgent.match(/os [\d._]*/gi);  
    version = (verinfo+"").replace(/[^0-9|_.]/ig,"").replace(/_/ig,".");//获取具体的系统版本号  
    if( version >= 11 ){ //版本>=11的时候
        audio.removeAttribute("autoplay");  
    }  
} 
01.
02.
03.
04.
05.
06.
07.
2018/03/05 0 / /
标签:  暂无标签

验证码: 1 + 1 =

回到顶部