Flash 动画不想显示 IE

发布于 2024-11-09 08:48:50 字数 698 浏览 0 评论 0原文

我的网站上有 Flash 动画,在除 IE 之外的所有其他浏览器中显示。标题与对象大小相同。

<div id="header">
            <object style="width: 760px; height: 128px; margin-top: 3px" codebase="http://test.eu-seed.net/safenet/pict/banner3.1.swf">
                <param name="movie" value="http://test.eu-seed.net/safenet/pict/banner3.1.swf" />
                <embed src="http://test.eu-seed.net/safenet/pict/banner3.1.swf" quality="high" width="760"
                    height="128" name="myMovieName" type="application/x-shockwave-flash" pluginpage="http://www.macromedia.com/go/getflashplayer">
        </embed>
            </object>
        </div>

可能是什么问题?

I have flash animation on my web site, in all other browsers except IE shows.Header is same size as object.

<div id="header">
            <object style="width: 760px; height: 128px; margin-top: 3px" codebase="http://test.eu-seed.net/safenet/pict/banner3.1.swf">
                <param name="movie" value="http://test.eu-seed.net/safenet/pict/banner3.1.swf" />
                <embed src="http://test.eu-seed.net/safenet/pict/banner3.1.swf" quality="high" width="760"
                    height="128" name="myMovieName" type="application/x-shockwave-flash" pluginpage="http://www.macromedia.com/go/getflashplayer">
        </embed>
            </object>
        </div>

What could be the problem ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

刘备忘录 2024-11-16 08:48:50

这是嵌入 Flash 影片的正确方法:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>      
    </head>
    <body>      
        <div id="flashContent">
            <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="506" height="310" id="player" align="middle">
                <param name="movie" value="http://test.eu-seed.net/safenet/pict/banner3.1.swf" />
                <param name="bgcolor" value="#FFFFFF" />
                <!--[if !IE]>-->
                <object type="application/x-shockwave-flash" data="player.swf" width="506" height="310">
                    <param name="movie" value="http://test.eu-seed.net/safenet/pict/banner3.1.swf" />
                    <param name="bgcolor" value="#FFFFFF" />
                <!--<![endif]-->
                    <a href="http://www.adobe.com/go/getflash">
                        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                    </a>
                <!--[if !IE]>-->
                </object>
                <!--<![endif]-->
            </object>
        </div>
    </body>
</html>

我还建议您使用 swfObject。

here is the correct way to embed a flash movie:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>      
    </head>
    <body>      
        <div id="flashContent">
            <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="506" height="310" id="player" align="middle">
                <param name="movie" value="http://test.eu-seed.net/safenet/pict/banner3.1.swf" />
                <param name="bgcolor" value="#FFFFFF" />
                <!--[if !IE]>-->
                <object type="application/x-shockwave-flash" data="player.swf" width="506" height="310">
                    <param name="movie" value="http://test.eu-seed.net/safenet/pict/banner3.1.swf" />
                    <param name="bgcolor" value="#FFFFFF" />
                <!--<![endif]-->
                    <a href="http://www.adobe.com/go/getflash">
                        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                    </a>
                <!--[if !IE]>-->
                </object>
                <!--<![endif]-->
            </object>
        </div>
    </body>
</html>

I also recomend you using swfObject.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文