Mic*_*ael 4 html video autoplay
embed src ="clip2.mp4"width ="600"height ="400"scale ="aspect"controller ="true"
这是我用来在我的网站上显示视频的代码,但有人知道如何阻止视频在网站加载后自动播放吗?
你需要将这两个属性添加到 <embed>
autoplay="false"
autostart="false"
Run Code Online (Sandbox Code Playgroud)
有些浏览器不会识别true或false.在这种情况下尝试,
autoplay="0"
autostart="0"
Run Code Online (Sandbox Code Playgroud)