flash或object标签和z索引

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flash或object标签和z索引相关的知识,希望对你有一定的参考价值。

  1. 1. Wrap your flash content in a div
  2. 2. Add <param name="wmode" value="transparent"> to your object tag
  3. 3. Set wmode="transparent" in the embed tag
  4. 4. Use css to set the position and z-index for your div (don't set negative z-index values as it will make your flash disappear)
  5.  
  6. :c:
  7.  
  8. #flash {
  9. position: relative; /*or absolute*/
  10. z-index: 0;
  11. }
  12.  
  13. :x:
  14.  
  15. <div id="flash">
  16. <object .... >
  17. <param name="wmode" value="transparent">
  18. <embed .... wmode="transparent">
  19. </div>
  20.  
  21. And that�s it!

以上是关于flash或object标签和z索引的主要内容,如果未能解决你的问题,请参考以下文章

flash wmode参数详解

object和embed使用及举例

HTML5中embed object的浏览器支持情况?

在HTML语言中object标签有啥作用??

当我用<iframe>调用flash动画时,怎样可以让php程序自动加载<object>标签以显示动画

html5 中object标签的使用