开发者

Drop down menu going behind flash video

开发者 https://www.devze.com 2023-03-27 23:10 出处:网络
I have a flash video and I have a drop down menu. The menu is landing behind the video and I\'m not sure how to stop this from happening.

I have a flash video and I have a drop down menu. The menu is landing behind the video and I'm not sure how to stop this from happening.

I have tired wmode="transparent" with no luck.

the site is here

flash code@
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0','width','283','height','200','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=img/AStarlogointernet&autoPlay=false&autoRewind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive' ); //end AC code
          </script>
            <noscript>
              <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="283" height="200" id="FLVPlayer">
                <param name="movie" value="FLVPlayer_Progressive.swf" />
                <param name="salign" value="lt" />
                <param name="wmode" value="transparent">   
                <param name="quality" value="high" />
                <param name="scale" value="noscale" />
                <param name="FlashVars" value="&MM_ComponentVersion=1&sk开发者_开发百科inName=Clear_Skin_1&streamName=img/AStarlogointernet&autoPlay=false&autoRewind=false" />
                <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=img/AStarlogointernet&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="283" height="200" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" wmode="transparent" />                        
            </object>
            </noscript>


do not forget z-index for "ul.subnav ", and "wmode=transparent" as well should be

    ul.topnav li ul.subnav {
    background: none repeat scroll 0 0 #333333;
    border: 1px solid #111111;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
    float: left;
    left: 0;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 35px;
    width: 170px;
    z-index: 1000;
}


ul.topnav li ul.subnav needs z-index: 1;

0

精彩评论

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