jQuery UI Slider重叠滑块

时间:2018-09-01 23:51:57

标签: jquery css

我使用滑块范围(jquery ui)和侧面导航栏(w3 school)。

滑块范围的处理程序在扩展时会与侧面导航栏重叠。

边栏的CSS:

/* ~~~~~~~~~~~~~~~~~~~~~~ SIDENAV ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

无重叠:当处理程序与导航栏不在同一计划中时 enter image description here

重叠:当处理程序与导航栏处于同一平面时 enter image description here

这种重叠的原因是什么?

1 个答案:

答案 0 :(得分:0)

解决方案在评论部分给出。

解决方案是提高侧边栏的z-index。

.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 10;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;

}

由于侧边栏应始终位于顶部,因此可以将其提高到很高的值,以免出现此问题。