Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何永久禁用视频标签上的控件。目前我有一个 5 秒的视频作为学校项目网站的介绍,我希望视频没有任何控件(没有重播,没有暂停按钮或类似的东西)。
有谁知道如何做到这一点?在网上搜索了很多,但我似乎找不到答案。
一切顺利!
controls是一个布尔属性,如果不包含,则保持未设置。用户不再有播放按钮,所以不要忘记设置autoplay属性。
controls
autoplay
<video autoplay> <source ...> </video>