gpt4 book ai didi

html - 如何关闭自动播放

转载 作者:行者123 更新时间:2023-11-27 23:41:43 26 4
gpt4 key购买 nike

我在 iframe 标记中嵌入了一个 .mp4 视频。我不知道如何关闭自动播放。我尝试了一切:autoplay="false", autoplay="0", autoplay='false', autoplay='0' 但似乎没有任何效果。这是我的代码:

<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item behind" src='videos/cloud_computing.mp4' width='640' height='360' style='width:640px;height:360px;'></iframe>
</div>

在此之前有一个 YouTube 视频(没有自动播放),代码如下所示:

<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item behind" src='https://www.youtube.com/embed/v1uyQZNg2vE?enablejsapi=1&amp;html5=1&amp;hd=1&amp;wmode=transparent&amp;controls=1&amp;showinfo=0;rel=0;' width='640' height='360' style='width:640px;height:360px;'></iframe>
</div>

最佳答案

你需要放一个<video>标记它,因为它不知道 iframe因此是视频autoplay永远不会工作。试试下面的代码。

   <div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item behind">
<video src='videos/cloud_computing.mp4'
width='640' height='360' style='width:640px;height:360px;' autoplay="0">
</video>
</iframe>
</div>

Note

我会用autoplay="0"autoplay="1"因为 chrome 无法识别 autoplay="true"autoplay="false" .

关于html - 如何关闭自动播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31434077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com