我試圖利用HTML5視頻標籤在頁面加載時自動播放mov或mp4視頻。但是,視頻在頁面加載時不播放。這裏是我的代碼:HTML5視頻標籤不播放
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>Bropocalypse</title>
<style>
body {background:#000000;
margin:100px;}
p {font-size:36px;
text-align:right;
margin:20px 0px;}
a:link, a:hover, a:visited {color:#FF0000;
text-decoration:none;}
.trailer {width:700px;
height:100%;
margin:0 auto;}
</style>
</head>
<body>
<div class="trailer">
<video width="700" height="400" src="trailer.mp4" poster="trailer.mp4" controls="controls" autoplay="autoplay" type="video/mp4; codecs='avc1.42E01E, mp4a.40.2'">
<p>If you are reading this, it is because your browser does not support the HTML5 video element.</p>
</video>
<p><a href="about.php"><img src="images/skip.png" alt="SKIP >>" /></a></p>
</div>
</body>
</html>
該頁面可以在這裏找到:http://www.tcnj.edu/~moore56/game-design/bropocalypse/。請讓我知道你可能有的任何建議或問題。謝謝。
你使用哪個瀏覽器和哪個版本? – Sarfraz
我使用的是Chrome,但我也希望它至少可以在Firefox中工作。 – myrmidon16