【发布时间】:2015-05-07 14:29:28
【问题描述】:
嵌入 src="clip2.mp4" width="600" height="400" scale="aspect" controller="true"
这是我用来在我的网站上显示视频的代码,但是有人知道如何在网站加载后阻止视频自动播放吗?
【问题讨论】:
嵌入 src="clip2.mp4" width="600" height="400" scale="aspect" controller="true"
这是我用来在我的网站上显示视频的代码,但是有人知道如何在网站加载后阻止视频自动播放吗?
【问题讨论】:
你需要将这两个属性添加到<embed>
autoplay="false"
autostart="false"
某些浏览器无法识别true 或false。在这种情况下尝试,
autoplay="0"
autostart="0"
【讨论】:
autostart="false"。这是一个旧答案,但是:stackoverflow.com/a/26310273/4204026