How to add smooth scrolling to Bootstrap's scroll spy function

前端 未结 8 1083
死守一世寂寞
死守一世寂寞 2020-11-30 17:30

I\'ve been trying to add a smooth scrolling function to my site for a while now but can\'t seem to get it to work.

Here is my HTML code relating to my navigation:<

8条回答
  •  感情败类
    2020-11-30 17:48

    $("#YOUR-BUTTON").on('click', function(e) {
       e.preventDefault();
       $('html, body').animate({
            scrollTop: $("#YOUR-TARGET").offset().top
         }, 300);
    });
    

提交回复
热议问题