如何完全隐藏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.