在 html 中嵌入 flash [英] Embed flash in html

查看:32
本文介绍了在 html 中嵌入 flash的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 chrome、ie 和 safari 中这不是问题,但在 Firefox 中却是.

In chrome, ie and safari this is not a problem, but in firefox it is.

我使用 作为我的 flashclip.

I use <object> for my flashclip.

<object type="application/x-shockwave-flash"> 
    <param name="movie" value="myclip.swf" /> 
    <param name="quality" value="high" /> 
</object>

我做错了什么?

推荐答案

经过一些测试,效果很好:

After some testing, this works fine:

<object type="application/x-shockwave-flash" data="myclip.swf" 
    width="550" height="400"> 

    <param name="movie" value="myclip.swf" />
    <param name="quality" value="high" />
</object>

Firefox 需要 datawidthheight.

Firefox needed both data, width and height.

这篇关于在 html 中嵌入 flash的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆