jQuery 横幅和下拉菜单问题

发布于 2024-11-26 14:50:42 字数 189 浏览 2 评论 0原文

您好,我对 jQuery 横幅和下拉菜单有疑问。下拉菜单位于 jQuery 横幅滑块后面。 此处查找示例。

我尝试了 z-index 和position:absolute 但无法修复它。

Hi I have a problem with jQuery banner and dropdown menu. The dropdown menu is behind the jQuery banner slider. Look for a sample here.

I tried z-index and position:absolute but I couldn't fix it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾家有女初长成 2024-12-03 14:50:42

首先,获取 SWFObject 并使用它来嵌入 Flash 影片。

然后,将您的 wmode 设置为 opaque 而不是 transparent,因为透明 wmode 对 CPU 要求很高,并且它们都遵循 Z 索引同样的重视。

它看起来像这样:

var so = new SWFObject("XML_Banner.swf", "XML_Banner.swf", "625", "245", "8","#ffffff");
so.addParam("wmode", "opaque");
so.write("flash")

First, grab SWFObject and use that to embed your flash movie.

Then, set your wmode to opaque instead of transparent, as the transparent wmode is very CPU-demanding and they both respect Z-indexes in the same regard.

It'll look something like this:

var so = new SWFObject("XML_Banner.swf", "XML_Banner.swf", "625", "245", "8","#ffffff");
so.addParam("wmode", "opaque");
so.write("flash")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文