我在我的网站上有一个视频,它继续自动播放。代码当前为:
<div class="cc-video-wrapper">
<iframe src="links/Clean-Energy-Overview-Wind Facts.mp4" type="video/mp4" width="500" autoplay="false" height="322" frameborder="0"
lowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
</div>到目前为止,它继续自动播放。我尝试过autoplay="0",preload="false",autostart="false“,但我的想法已经用完了。以前有没有人遇到过这个问题?
发布于 2015-07-03 04:50:27
您可以使用video标记:
<video width="500" height="322" controls>
<source src="links/Clean-Energy-Overview-Wind Facts.mp4" type="video/mp4">
</video>https://stackoverflow.com/questions/31194246
复制相似问题