如何通过自动播放阻止我网站上的嵌入视频

Mic*_*ael 4 html video autoplay

embed src ="clip2.mp4"width ="600"height ="400"scale ="aspect"controller ="true"

这是我用来在我的网站上显示视频的代码,但有人知道如何阻止视频在网站加载后自动播放吗?

Lal*_*Lal 6

你需要将这两个属性添加到 <embed>

autoplay="false"
autostart="false"
Run Code Online (Sandbox Code Playgroud)

有些浏览器不会识别truefalse.在这种情况下尝试,

autoplay="0"
autostart="0"
Run Code Online (Sandbox Code Playgroud)