我正在使用标签在页面上显示我的视频。加载页面后,视频会自动启动。
为了防止这种情况,我使用 autostart="false"。但没有运气。
我的代码:
<embed style="max-width:180px; max-height:135px;" src="url" autostart="false" loop="true">
有人可以帮我吗?
如果它是一个严格的嵌入,通常你只需将 autostart="false" 放在嵌入标签中。
示例:
<embed autostart="false">
如果它是一个对象(推荐),您将需要使用一个参数。
示例:
<object width="160" height="144">
<param name="autoplay" value="false">
<embed src="sample.mov" width="160" height="144" autoplay="false" controller="false"
</embed>