Scroll to a specific Element Using html

前端 未结 10 1351
猫巷女王i
猫巷女王i 2020-12-02 12:09

Is there a method in html which makes the webpage scroll to a specific Element using HTML !?

10条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-02 12:45

    If you use Jquery you can add this to your javascript:

    $('.smooth-goto').on('click', function() {  
        $('html, body').animate({scrollTop: $(this.hash).offset().top - 50}, 1000);
        return false;
    });
    

    Also, don't forget to add this class to your a tag too like this:

    Text
    

提交回复
热议问题