Insert div over flash in IE

后端 未结 6 1149
暗喜
暗喜 2021-01-11 11:44

I have a menu bar which has several submenu items. The homepage contains a flash animation which is located under the menu bar. When the submenu items are over the flash fi

6条回答
  •  长发绾君心
    2021-01-11 12:21

    Muneer and Tim already gave a good answer but I'd like to add some additional infos:

    • Adobe's website has a documentation about Flash OBJECT and EMBED tag attributes
    • transparent and opaque values will cause an accessibility problem, cause they hide the content of your flash object to screen readers. Only the default value of window is OK for screen readers
    • z-index won't and can't do anything in your case: the object is managed by a plugin, the flash player or an alternative, and it do so quite outside the page rendered by the browser. It still interacts with it (width, height, JS) but as for rendering ...
    • There is a similar issue with select elements in IE6 (and 7?) where no z-index value on a positioned element will render the latter over the select (this one is a bug due to the way IE considers select elements)
    • you should test on OS X and Linux, there are quite a few issues with flash on these OSes.

提交回复
热议问题