开发者

div tag on top of flash

开发者 https://www.devze.com 2023-01-28 03:44 出处:网络
http://www.starcraft-source.com/tv/#stream-35 The orange box and navigation is showing up behind the flash on the main site... how can I fix this?

http://www.starcraft-source.com/tv/#stream-35

The orange box and navigation is showing up behind the flash on the main site... how can I fix this?

I experience the issue in Google chrome

-- I've added that parameter, it doesn't seem to have any effect on this one: http://www.st开发者_开发百科arcraft-source.com/tv/#stream-27


Add this parameter to your Flash.

<param NAME="wmode" VALUE="transparent">


You should add wmode to both object(IE) and embed(Firefox, Webkit, etc) tags:

<object width="..." height="..." ...>
   ...
   <param name="wmode" value="transparent">
   <embed width="..." height="..." wmode="transparent" ...></embed>
</object>
0

精彩评论

暂无评论...
验证码 换一张
取 消