jQuery animate scroll

后端 未结 5 1006
名媛妹妹
名媛妹妹 2020-12-02 10:21

I\'m not sure how to call the effect, but can someone point me into a library that would help me do the same effect as this website?

http://www.makr.com

Basi

5条回答
  •  温柔的废话
    2020-12-02 10:50

    You can give this simple jQuery plugin (AnimateScroll) a whirl. It is quite easy to use.

    1. Scroll to the top of the page:

    $('body').animatescroll();
    

    2. Scroll to an element with ID section-1:

    $('#section-1').animatescroll({easing:'easeInOutBack'});
    

    Disclaimer: I am the author of this plugin.

提交回复
热议问题