Jquery 滚动到掩码阻止了页面其余内容的功能

发布于 2024-11-26 19:26:00 字数 350 浏览 2 评论 0原文

在此页面上: http://thegoodgirlsnyc.com/test/new/who.php

我正在工作关于构建垂直滑块。有几个方面不起作用,但最具体的是导航功能丢失了。

这可以在这里显示: http://thegoodgirlsnyc.com/test/new/who.php

有什么方法可以通过更改掩码 ID 的百分比来解决此问题?

On this page:
http://thegoodgirlsnyc.com/test/new/who.php

I'm working on building a vertical slider. Several aspects are not working, but most specifically the functionality of the navigation is lost.

This can be shown here:
http://thegoodgirlsnyc.com/test/new/who.php

Should there be a way to fix this by changing the percentages of the mask ID?

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

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

发布评论

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

评论(1

燃情 2024-12-03 19:26:00
#leftcolumn {
    color: #333333;
    float: left;
    height: 600px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 190px;
    z-index: 9999;
}

添加了 position:relativez-index:999 并且导航再次正常工作。

我仅在 Firefox 中尝试过此操作,因此可能需要对位置和 z-index 进行更多修改才能使其在 IE 中工作,但您绝对可以使用 z-index 属性再次使其工作

#leftcolumn {
    color: #333333;
    float: left;
    height: 600px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 190px;
    z-index: 9999;
}

added position:relative and z-index:999 and the nav is working again.

I've tried this in Firefox only so there may be a little more tinkering with the positions and z-index's to get it working in IE but you can definitely get this working again with the z-index prperty

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文