admin管理员组文章数量:1342908
I'm trying to make my simple "scroll back to the top" image appear and disappear based on how far away from the top of the page you are. For the sake of example, let's say 100 pixels away from the top.
Here's what I have. It seems to work on scroll down, the image div fades in.
When I scroll back to the top, the div doesn't fadeOut
. Any tips?
$(window).scroll(function() {
if ($(this).scrollTop()>100)
{
$('#toTop').fadeIn();
}
else
{
$('.#toTop').fadeOut();
}
});
I'm trying to make my simple "scroll back to the top" image appear and disappear based on how far away from the top of the page you are. For the sake of example, let's say 100 pixels away from the top.
Here's what I have. It seems to work on scroll down, the image div fades in.
When I scroll back to the top, the div doesn't fadeOut
. Any tips?
$(window).scroll(function() {
if ($(this).scrollTop()>100)
{
$('#toTop').fadeIn();
}
else
{
$('.#toTop').fadeOut();
}
});
Share
Improve this question
asked Aug 6, 2013 at 19:06
PatPat
1,2035 gold badges21 silver badges45 bronze badges
2
-
4
$('.#toTop').fadeOut();
this selector seems wrong, shouldn't it just be$('#toTop').fadeOut();
without the.
in front of the#
? – Ohgodwhy Commented Aug 6, 2013 at 19:07 - @Ohgodwhy Yep, it was a typo. facepalm – Pat Commented Aug 6, 2013 at 19:09
1 Answer
Reset to default 12I think you've a typo in your code: $('.#toTop').fadeOut();
should be $('#toTop').fadeOut();
Update
Just a simple improvement. To prevent the element be faded all the time you scroll, check if it was already faded earlier:
var $toTop = $('#toTop');
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$toTop.fadeIn();
} else if ($toTop.is(':visible')) {
$toTop.fadeOut();
}
});
本文标签: javascriptShow and hide a Div on scroll up and downStack Overflow
版权声明:本文标题:javascript - Show and hide a Div on scroll up and down - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743624823a2512116.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论