<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<source src="movie.webm" type="video/webm">
<object data="movie.mp4" width="320" height="240">
<embed src="movie.swf" width="320" height="240">
</object>
</video>
//非原创(当时忘记保存大佬连接了,不知道是谁的了,所以没有转载链接,见谅)
只需要把名字改改就行
如果要实现自动播放:改下这个:controls autoplay muted
<!DOCTYPE html>;
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<video width="320" height="240" controls autoplay muted>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<source src="movie.webm" type="video/webm">
<object data="movie.mp4" width="320" height="240">
<embed src="movie.swf" width="320" height="240">
</object>
</video>
</body>
</html>