Scroll Automatically to the Bottom of the Page

后端 未结 24 2891
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 05:22

Consider I have a list of questions. When I click on the first question, it should automatically take me to the bottom of the page.

For a matter of fact, I do know

24条回答
  •  日久生厌
    2020-11-22 06:06

    You may try Gentle Anchors a nice javascript plugin.

    Example:

    function SomeFunction() {
      // your code
      // Pass an id attribute to scroll to. The # is required
      Gentle_Anchors.Setup('#destination');
      // maybe some more code
    }
    

    Compatibility Tested on:

    • Mac Firefox, Safari, Opera
    • Windows Firefox, Opera, Safari, Internet Explorer 5.55+
    • Linux untested but should be fine with Firefox at least

提交回复
热议问题