解決Flash擋住層用z index無效的問題

2022-08-21 17:39:08 字數 704 閱讀 9088

在html中,如果嵌入flash,缺省會將flash放在頁面的最上面。也就是說,即使用絕對定位,將z-index設的無窮高,頁面裡的任何元素還是無法將它蓋住。

方法:針對ie 在內加上引數

針對firefox 在內加上引數wmode="opaque"

方法一、

<

object

type

data

=」style/flash/001.swf」

width

=」400″

height

=」400″

>

<

param

name

=」movie」

value

=「001.swf」

/>

<

param

name

=」wmode」

value

=」opaque」

/>

<

embed

wmode

=」opaque」

>

embed

>

object

>

方法二:設定透明的flash

本方法是設定flash透明來達到所需的效果。具體做法是 將上**中的name為wmode的屬性設定為transparent, 即**:

徹底解決IFRAME擋住層 DIV

昨天在專案中發現iframe擋住層 div 乙個頁面有4個iframe,iframe頁面中跟隨滑鼠的層 在iframe邊緣總是被其他iframe擋住,鬱悶了好久,在網上也找了好多資料,都沒能很好解決.用window.createpopup 也不行,因為父頁面框架中有定時器重新整理,不過window....

DIV層被flash層遮蓋問題解決思路

ie瀏覽器下可用 param name wmode value transparent firefox下可用 embed src yourflash.swf wmode transparent embed 關於wmode屬性資料 可選 允許使用 internet explorer 4.0 中的透明 ...

Div層被嵌入的Flash層遮蓋問題解決思路

ie瀏覽器下可用 firefox下可用 關於wmode屬性資料 可選 允許使用 internet explorer 4.0 中的透明 flash 內容 絕對定位和分層顯示功能。此標記 屬性僅在帶有 flash player activex 控制項的 windows 中有效。window opaque...