WordPress: One-page scroll JQuery script not working?

后端 未结 3 1551
渐次进展
渐次进展 2021-01-22 09:21

Trying to create a simple one page scroll.

In WordPress, I have navigation a tags like this.

Contact


        
3条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-22 10:07

    You can use below for the page scroll

    $(document).ready(function() {
    
      jQuery('a[href^="#"]').on('click', function(e) {
        e.preventDefault();
    
        var sectionID = $(this).attr('href') + "-View";
    
        jQuery("html, body").animate({
          scrollTop: jQuery(sectionID).offset().top
        }, 1000)
      });
    });
    

提交回复
热议问题