ScrollTop really jerky in Chrome

前端 未结 2 382
清酒与你
清酒与你 2021-01-23 16:17

I\'m using the scrollTop function to create a parallax scrolling website, binding the scrollTop function to different anchors throughout my website.

The problem I\'m hav

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-23 17:14

    If you are open to an alternative approach, using a plugin, jQuery scrollTo has always been very smooth when I have used it.

    This would let you do

    $('.recipes').click(function(){
        $.scrollTo('.main1', 1500);
    });
    

提交回复
热议问题