我正在使用Soundcloud嵌入iframe代码。 Soundcloud提供了自动播放音频的选项,它在iframe &auto_play=true
属性中定义为src
url参数。
但是还有其他iframe属性allow="autoplay 'none'"
不允许iframe播放该音频,并且无法在Firefox中使用。
https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide#Example_Disabling_autoplay
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#Browser_compatibility
HTML:
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/148714961&color=%23ea00ff&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
https://codepen.io/balancana/pen/WPKjoE
问题是我想停止播放Soundcloud iframe音频文件
不管auto_play
网址参数是什么。