蒋金阳 发表于 2009-5-11 02:03:53

怎么让网页插入FLASH居中显示啊?代码!

答:<br /><br />你的问题有点模糊,是想让一个flash在IE的整个显示区上下左右都居中显示吗? <br />这样的话,先插入一个100%的表格,再把高度设为100%,把上下和左右对齐都设为对中。在其中插入flash就可以,不管IE窗口怎么缩放,flash都是显示在正中的。 <br />代码: <br />&lt;html&gt; <br />&lt;head&gt; <br />&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;&gt; <br />&lt;title&gt;flash居中显示&lt;/title&gt; <br />&lt;/head&gt; <br />&lt;body leftmargin=&quot;0&quot; topmargin=&quot;0&quot;&gt; <br />&lt;table width=&quot;100%&quot; height=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt; <br />&lt;tr&gt; <br />&lt;td align=&quot;center&quot;&gt;&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0&quot; width=&quot;400&quot; height=&quot;300&quot;&gt; <br />&lt;param name=&quot;movie&quot; value=&quot;mf_001.swf&quot;&gt; <br />&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt; <br />&lt;embed src=&quot;mf_001.swf&quot; quality=&quot;high&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;400&quot; height=&quot;300&quot;&gt;&lt;/embed&gt; <br />&lt;/object&gt;&lt;/td&gt; <br />&lt;/tr&gt; <br />&lt;/table&gt; <br />&lt;/body&gt; <br />&lt;/html&gt;<br /><br /><blockquote class="blockquote">From: http://www.chenyu.me/read-htm-tid-4509.htmlPowered by PHPWind.com</blockquote>
页: [1]
查看完整版本: 怎么让网页插入FLASH居中显示啊?代码!