HTML5视频//完全隐藏控件

前端之家收集整理的这篇文章主要介绍了HTML5视频//完全隐藏控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何完全隐藏HTML5视频控件?
<video width="300" height="200" controls="false" autoplay="autoplay">
<source src="video/supercoolvideo.mp4" type="video/mp4" />
</video>

false没有工作 – 这是怎么做的?

干杯。

解决方法

喜欢这个:
<video width="300" height="200" autoplay="autoplay">
<source src="video/supercoolvideo.mp4" type="video/mp4" />
</video>

控件是一个boolean attribute

Note: The values “true” and “false” are not allowed on boolean attributes. To represent a false value,the attribute has to be omitted altogether.

原文链接:https://www.f2er.com/html5/169741.html

猜你在找的HTML5相关文章