开发者

JQUERY, scrollTo, after scrolling down, the page won't let me scroll up for a second... Y?

开发者 https://www.devze.com 2023-01-01 20:38 出处:网络
I\'m using the following JQUERY to attach an even to a link in the header, wh开发者_Python百科ich essentially scrolls to the bottom of the page:

I'm using the following JQUERY to attach an even to a link in the header, wh开发者_Python百科ich essentially scrolls to the bottom of the page:

$('#comment-count-btn').click(function(){
    $('html,body').scrollTo('#comment-wrapper', 500);
});

Problem is, that it scrolls all the way to the bottom of the page (which is correct), but then when I try to scroll up a tad, the scroll bar jumps, as if it's locked for a little bit.

Any ideas?


Try adding return false; in the end of click() function. Also, try scrollTo only to the 'body' not both html and body. It maybe confusing scrollTo.


Try to trace your click using console.log, most likely your element is being clicked multiple times.

Also, if you have on scroll capturing the position make sure that the on click is outside of the on scroll. That's how I fixed this same issue.

$(window).on('scroll', function()){
    if (scrollTop.length > 0) {
        if ($(this).scrollTop() > 500) {
            scrollTop.fadeIn();
        } else {
            scrollTop.fadeOut();
        }
    }
}

// the click event has to be outside of the scroll event
scrollTopButton.click(function() {
    $("html,body").animate({
        scrollTop: 0
    }, 1000);
    return false;
});


Having the click event out of the scroll function worked for me

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号