Home  >  Article  >  Web Front-end  >  html 视频的控制按钮的问题_html/css_WEB-ITnose

html 视频的控制按钮的问题_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 08:51:011582browse


一般视频插入,video的播放按钮默认在下边,现在实现如图效果, 想要实现controls 在视频预览图片的中间,就是我们视频网站上的那样,应该怎么做?


回复讨论(解决方案)

你可以先做一个图片在中间的。点击后,触发视频事件。

在video上放个图片,用以下代码绑定事件document.getElementById("imgID").onclick = function () {	document.getElementById("videoID").play();	document.getElementById("imgID").style.display = "none";}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn