HTML-视频海报问题

时间:2018-12-02 07:35:00

标签: jquery html css video

<video id="bgvid" controls >
   <source src="video/careers-video.mp4" poster="https://netbramha.staging.wpengine.com/wp-content/themes/netbramha-new/images/thumbnail-video@3x.jpg" type="video/mp4">
</video>

嘿,我正在尝试张贴海报。但这是行不通的。我已经在上面粘贴了我的代码,并且正在使用用于自定义视频的插件。我用于此的代码是正确的吗?

在此链接中,您可以看到相同的插件。 http://www.responsivedad.com/

谢谢:)

2 个答案:

答案 0 :(得分:0)

$val

海报属性是视频标签的属性。这可能是工作

答案 1 :(得分:0)

  1. 您将图像扩展用作jpgf是由于未加载图像,因此请使用.jpg(不使用f
  2. 通过source tag as here
  3. 使用代码

video{
width:300px;
height:250px
}
<video controls poster="https://netbramha.staging.wpengine.com/wp-content/themes/netbramha-new/images/thumbnail-video@3x.jpg">
  <source src="video/careers-video.mp4" type="video/mp4">
</video>