swf gif的HTML5后备(<img/>标记中的swf)

时间:2016-03-18 12:05:34

标签: html5 flash

我的代码是这样的

<div style="text-align:center; margin-bottom: 10px;">
    <iframe frameborder="0" height="150" scrolling="no"         
           src="/img/iness_banner150x150_2016_podpora.swf" width="150">
    </iframe>
</div>

我需要为此提供html5后备,我不太清楚如何做到这一点,它不是视频而是gif rahter。我一直在寻找这个,但没有找到令人满意的东西。

1 个答案:

答案 0 :(得分:0)

我认为你可以这样做:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="150" height="150">
    <param name="movie" value="/img/iness_banner150x150_2016_podpora.swf">
    <object type="application/x-shockwave-flash" width="150" height="150">
        <param name="movie" value="/img/iness_banner150x150_2016_podpora.swf">
        <iframe src="/img/your_image.gif" width="150" height="150" frameBorder="0" scrolling="no"></iframe>
    </object>
</object>

希望可以提供帮助。