如何将flash(.swf)放入页面?

时间:2009-09-13 18:12:47

标签: html flash

我打算使用.swf文件作为标题。这不起作用。

<img src="exactheader.swf" width="650" height="140" />
你可以告诉我怎么样?

3 个答案:

答案 0 :(得分:8)

请改为尝试:

<object width="650" height="140">
  <param name="movie" value="exactheader.swf">
  <embed src="exactheader.swf" width="650" height="140"></embed>
</object>

答案 1 :(得分:5)

您应该使用&lt; embed&gt; 标记将Flash文件嵌入到html页面中:

<object width="650" height="140">
  <param name="movie" value="exactheader.swf">
  <embed src="exactheader.swf" width="650" height="140"> </embed>
</object>

编辑:正如Russ指出的那样,我刚刚找到了资源,为什么我们应该同时使用object和embed标签here

  

在上面的代码中有两个    标签和&lt;对象&gt;标签。这个   是因为标签是   由Internet Explorer识别,和   Netscape识别&lt; embed&gt;标签   并忽略&lt; object&gt;标签

答案 2 :(得分:1)

我发现swfobject是在html中嵌入flash的“最佳”方法。它处理,版本检查,备用内容等。花几分钟熟悉这个易于使用的API: http://code.google.com/p/swfobject/