开发者

How to add video player navigation for videos in html [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 7 years ago.

Improve this que开发者_如何学JAVAstion

I need to add video player for my video files. Can any one help me to add? Is there any free players on web?


Easiest way ever. With HTML5, you can simply use the video tag.

<!DOCTYPE HTML>
<html>
<body>

<video src="movie.ogg" controls="true">
your browser does not support the video tag
</video>

</body>
</html>

If not on HTML5, I'd suggest using the jQuery media plugin


Two ways of doing

  1. HTML5

    <video src="movie.ogg" controls="true"></video>

many browser like firefox, chrome already supporting this.

  1. use flash player and embed the video

  2. simply use embed tag to embed an object. There is a issue here. browser needs to support this.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜