我正在處理父div的寬度爲100%的佈局&窗口大小的高度。jQuery滾動z-index問題與位置:固定
它的子div有固定尺寸說:400像素溢出:自動,因爲我想顯示滾動條。
這個孩子div有一個元素,我想添加位置:固定在滾動事件。
我的問題是,每當我想補充的位置是:固定使用jQuery
滾動事件的孩子DIV中的元素之一,它彈出出孩子的div甚至是孩子div有較高的z-index &溢出:汽車
這裏工作Code & Fiddle
什麼是這裏的問題?需要解決什麼?
的Html
<div id="wrapper">
<div id="content">
<p id="head">Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet</p>
</div>
</div>
CSS
body, html {
height: 100%
}
#wrapper {
position: relative;
width: 100%;
height: 100%;
background: #bbb;
z-index: 999
}
#content {
position: relative;
width: 400px;
height: 400px;
overflow: auto;
background: #eee;
z-index: 99
}
p {
width: 100%;
padding: 40px;
}
#head {
background: green
}
.fixed {
position: fixed;
}
JS
$("#content").scroll(function() {
if($(this).scrollTop() > 0) {
$('#head').addClass('fixed');
} else {
$('#head').removeClass('fixed');
}
});