Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

html - How do I embed a video using html5?

Hello I'm building a webpage I've got everything else but i don't know how to embed a video using html5? This is very important in my website so help would be very appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
<video id="myMovie" width="640" height="360" poster="video.png"  >
     <source src="20140810_131405.mp4">
</video>

using the video tag. The poster attribute is the thumbnail pic. Obviously the source links to the actual video file.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...