我希望将我的海报调整为比视频大小短的视频; 320瓦特/ 240H。
<div class="greetings-gp text-center">
<video width="320" height="240" poster="img/Logo_GP.png" controls>
<source src="video/Welcome%20Partners!%20(1).mp4" type="video/mp4">
</source>
</video>
</div>
答案 0 :(得分:0)
尝试以下代码。它在所有最新版本的浏览器中都解决了该问题。
<html>
<head>
<meta http-equiv="Content-Type" content="video/mp4; charset=utf-8" />
</head>
<body>
<div class="greetings-gp text-center">
<video width="320" height="240" poster="flower.png" controls>
<source src="Pyramids - 1565.mp4" type="video/mp4">
<source src="Red - 14840.mp4" type="video/mp4">
</source>
</video>
</div>
</body>
</html>