以下是我正在使用的div代码(这是javascript动态框的第3个框):
<div class="contentdiv" style="margin:-20px 0 10px -30px;">
<object height="100%" cellSpacing="0" cellPadding="0">
<param name="movie" value="images/tri.swf">
<embed src="images/tri.swf" height="100%" align=top cellSpacing="0" cellPadding="0">
</embed>
</object>
</div>
显然所有这些.swf应该是秒表中数字的倒计时。
我希望.swf图形适合div,就像#5框中的图像一样。
现在我不能让它成为合适的尺寸或正确的对齐方式。我当然不是Flash专家,所以任何线索都会很棒。
此外,页面上的其他内容完全被破坏,因为这只是我测试内容的网站的“开发”版本。所以希望这一切都可以被忽略。
答案 0 :(得分:0)
我可能会错过您的要求,但您需要做的只是在embed
和object
标签上设置高度和宽度,使其成为您想要的高度和宽度。以下使用50px的宽度和40px的高度,但在声明时请记住省略px
:
<div class="contentdiv" style="margin:-20px 0 10px -30px;">
<object height="40" width="50">
<param name="movie" value="images/tri.swf">
<embed src="images/tri.swf" height="40" width="50" align="top">
</embed>
</object>
</div>