我的网页上有一个div(让我们称之为div A)position:fixed
这很好。然而,在该div中我有几个其他div(让我们称之为div 1,2和3),我想在访问者使用滚动条时移动它。
我怎样才能告诉div 1,2和amp; 3跟随滚动条位置?
HTML:
<section class="block">
<div class="full-width blue">
</div>
<div class="full-width green">
</div>
<div class="full-width orange">
</div>
</section>
CSS:
.block{
width: 300px;
height: 104px;
position: fixed;
left: 1em;
top: 1em;
z-index: 999;
}
.full-width
类只是告诉div运行其容器的整个宽度。
答案 0 :(得分:2)
这样的东西?:
<强> HTML 强>
<section class="block">
<div class="full-width blue">
</div>
<div class="full-width green">
</div>
<div class="full-width orange">
</div>
</section>
<强> CSS 强>
.block{
width: 300px;
height: 104px;
position: fixed;
left: 1em;
top: 1em;
z-index: 999;
background-color: #CCC;
overflow-y: hidden;
overflow-x: scroll;
white-space: nowrap;
}
.full-width {
display: inline-block;
width: 300px;
height: 104px;
}
.blue {
background-color: #00CCFF;
}
.green {
background-color: #CCFF00;
}
.orange {
background-color: #FFCC00;
}
或者像这样?:
我稍微修改了@deebs提供的小提琴
答案 1 :(得分:1)
如果你做这样的事情得到滚动高度然后匹配彩色div的css,或者甚至用这个滚动高度包装那些div的容器怎么办:
$(document).ready(function () {
window.onscroll = scrollFunction;
function scrollFunction() {
var doc = document.documentElement, body = document.body;
var top = (doc && doc.scrollTop || body && body.scrollTop || 0);
$('.blue').css("margin-top", top)
}
});
修订后的代码
我制作了fiddle,但我不确定这是你想要的“滚动匹配”。
答案 2 :(得分:0)