jquery判断滚动条与头部距离
如图,想根据滚动条滚动的距离让层显示。但是除了第一个显示了之后……滚动条往下滚……后面的都不显示通过alert判断……不管怎么滚动获取的值都是0...
如图,想根据滚动条滚动的距离让层显示。但是除了第一个显示了之后……滚动条往下滚……后面的都不显示
通过alert判断……不管怎么滚动 获取的值都是0 展开
通过alert判断……不管怎么滚动 获取的值都是0 展开
3个回答
展开全部
这是我刚给你手写的,你对照看看:
<script src="jquery-1.9.1.min.js"></script>
<script>
$(document).ready(function(){
$(document).scroll(function(){
var top = $(document).scrollTop();
if(top < 300)
$(".tree01").show();
else if(top < 600)
$(".tree02").show();
else if(top < 900)
$(".tree03").show();
});
});
</script>
<div style="height:300px;"></div>
<div class="tree01" style="width:300px;height:300px;background-color:red;display:none;"></div>
<div class="tree02" style="width:300px;height:300px;background-color:blue;display:none;"></div>
<div class="tree03" style="width:300px;height:300px;background-color:green;display:none;"></div>
<div style="height:3000px;"></div>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
// 滑动滚动条
$(window).scroll(function(){
// 滚动条距离顶部的距离 大于 200px时
if($(window).scrollTop() >= 200){
$(".scroll_top").fadeIn(1000); // 开始淡入
} else{
$(".scroll_top").stop(true,true).fadeOut(1000); // 如果小于等于 200 淡出
}
});
$(window).scroll(function(){
// 滚动条距离顶部的距离 大于 200px时
if($(window).scrollTop() >= 200){
$(".scroll_top").fadeIn(1000); // 开始淡入
} else{
$(".scroll_top").stop(true,true).fadeOut(1000); // 如果小于等于 200 淡出
}
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询