Home > Article > Web Front-end > flash blocks the drop-down menu_html/css_WEB-ITnose
I encountered a difficult problem with flash blocking the menu.
I checked the information online, and most of them said to add a
or this
params.wmode="opaque";
I have tried this too.
Mine is directly: params.wmode = "transparent"; params.wmode="opaque";
But it has no effect.
Others say to download flash.js but when you click on the link, it is empty. Speechless. . . .
Some said: Increase the zindex in the menu CSS, or adjust the FALSH to a smaller value, to avoid display order issues.
But I tried this and it didn’t work.
Finally found a perfect solution:
swfobject.embedSWF("cu3er.swf", "cu3er_swf", "1003", "360", "9", flashvars, params, attributes,{"wmode":"transparent"});
Add {"wmode":"transparent"} to the end and it will be ok .