Bootstrap 4. Smooth scrolling working on .nav-link but not on other anchor elements

前端 未结 2 1260
日久生厌
日久生厌 2021-02-08 15:10

I\'m using Bootstrap 4, and am using the following jQuery to allow smooth scrolling from the .nav-links to section id\'s (within the same page):

$(\'.nav-link\')         


        
2条回答
  •  鱼传尺愫
    2021-02-08 15:37

    Its working fine with bootstrap 4 and this code also working fine may be something wrong in your other code.

    $('.test, .nav-link, .navbar-brand, .new-button').click(function() {
        var sectionTo = $(this).attr('href');
        $('html, body').animate({
          scrollTop: $(sectionTo).offset().top
        }, 1500);
    });
      
      
      
      
    
    test class
    navbar-brand class





































    test class






























    navbar-brand class






























提交回复
热议问题