How to navigate to a section of a page

后端 未结 7 1452
执念已碎
执念已碎 2020-12-01 11:04

I have a landing page with links. How can I direct user to a section of a different page?

Main Page:

Sushi


        
相关标签:
7条回答
  • 2020-12-01 11:31

    My Solutions:

    $("body").scrollspy({ target: ".target", offset: fix_header_height });
    
    $(".target").click(function() {
     $("body").animate(
      {
       scrollTop: $($(this).attr("href")).offset().top - fix_header_height
      },
      500
     );
     return;
    });
    
    
    0 讨论(0)
提交回复
热议问题