将缩略图的大小调整为视频

时间:2018-06-04 15:29:12

标签: html5

我希望将我的海报调整为比视频大小短的视频; 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>

1 个答案:

答案 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>