在HTML5中,Swf显示得太小

在HTML5中,Swf显示得太小,html,responsive-design,embed,flash,Html,Responsive Design,Embed,Flash,我尝试了许多变体,但无法100%显示我的Flash动画(可调整大小)。 动画如下: 我的doctype: <!DOCTYPE html> <!--[if lt IE 7]><html class="no-js ie ie6 lte8 lte7"><![endif]--> <!--[if IE 7]><html class="no-js ie ie7 lte8 lte7"><![endif]--> <!--[

我尝试了许多变体,但无法100%显示我的Flash动画(可调整大小)。 动画如下:

我的doctype:

<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js ie ie6 lte8 lte7"><![endif]-->
<!--[if IE 7]><html class="no-js ie ie7 lte8 lte7"><![endif]-->
<!--[if IE 8]><html class="no-js ie ie8 lte8"><![endif]-->
<!--[if lt IE 9]><script src="http://www.mywebsite.com/js/html5.js" type="text/javascript"></script><![endif]-->
<!--[if !IE]><!-->
    <html lang="fr-FR" style="" class="js">
<!--<![endif]--> 

嵌入swf的第一个变化:

<embed align="middle" allowscriptaccess="sameDomain" style="border:0px solid #dddddd" height="100%" width="100%" pluginspage="http://www.adobe.com/go/getflashplayer" quality="high" src="http://www.mywebsite/index.swf" type="application/x-shockwave-flash"></embed>

第二种变化:

<object>
<param name="movie" value="http://www.mywebsite.com/index.swf"/>
<param name="allowFullScreen" value="true"/>
<param name="allowscriptaccess" value="sameDomain"/>
<param name="wmode" value="transparent"/>
<embed wmode="transparent" src="http://www.mywebsite.com/index.swf" type="application/x-shockwave-flash" class="swfObject" allowscriptaccess="sameDomain" allowfullscreen="true"/>
</object>

有什么想法吗?

这应该行得通:

<style type="text/css">
html, body, object{width:100%;height:100%;padding:0;margin:0;}
</style>

html,正文,对象{宽度:100%;高度:100%;填充:0;边距:0;}

你很和蔼可亲,很管用!!!谢谢。。。还有待在Chrome、Safari和IE中进行测试,我使用Firefox…最后我只使用
代码,对于html5来说已经足够了,但我不知道我们可以为对象提供100%的宽度和高度样式并嵌入标签。。。