选择图片或视频

时间:2012-12-21 00:12:03

标签: html css image video

我想知道如何在html中显示图像或视频。为了澄清,我想显示视频,但是如果视频不存在或者找不到文件,我想要显示默认图片。基本上是在视频不存在或不存在的情况下显示的图像文件。这甚至可能吗?我一直试图解决这个问题。没运气。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

查看这段代码,提供HTML5视频回退到Flash和Flash回退到简单的图像,没有绝对没有涉及JavaScript!

<!-- first try HTML5 playback: if serving as XML, expand `controls` to `controls="controls"` and autoplay likewise -->
<!-- warning: playback does not work on iOS3 if you include the poster attribute! fixed in iOS4.0 -->
<video width="100%" height="200px" controls>

    <!-- MP4 must be first for iPad! -->
    <source src="__VIDEO__.MP4" type="video/mp4" /><!-- Safari / iOS video    -->
    <source src="__VIDEO__.OGV" type="video/ogg" /><!-- Firefox / Opera / Chrome10 -->

    <!-- fallback to Flash: -->
    <object width="640" height="360" type="application/x-shockwave-flash" data="__FLASH__.SWF">

         <!-- Firefox uses the `data` attribute above, IE/Safari uses the param below -->
         <param name="movie" value="__FLASH__.SWF" />
         <param name="flashvars" value="controlbar=over&amp;image=__POSTER__.JPG&amp;file=__VIDEO__.MP4" />

         <!-- fallback image. note the title field below, put the title of the video there -->
         <img src="__VIDEO__.JPG" width="640" height="360" alt="__TITLE__"
         title="No video playback capabilities, please download the video below" />
    </object>
</video>

<!-- you *must* offer a download link as they may be able to play the file locally. customise this bit all you want -->
<p>    
     <strong>Download Video:</strong>
     Closed Format: <a href="__VIDEO__.MP4">"MP4"</a>
     Open Format:   <a href="__VIDEO__.OGV">"Ogg"</a>
</p>​