Scroll automatically to the bottom page - speed control

Sky Yau

I need your help on my site for the issue of "Scroll automatically to the bottom of the page"

I am currently using the script below to control the auto scroll page, but the only thing is I do not know how to control the scroll speed. Can someone help please?

 window.onload=toBottom;

function toBottom()
{
window.scrollTo(0, document.body.scrollHeight);
}

And my site url is : http://worldplatter.com/2014/recipe/beef/

PHP Team

You can use jQuery animate function to scroll the page as you have used jQuery Library in your site like below :

 jQuery(window).load(function() {
    jQuery("html, body").animate({ scrollTop: jQuery(document).height() }, 1000);
 });

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Scroll Automatically to the Bottom of the Page

From Dev

Automatically scroll to bottom as the page loads

From Dev

Infinitely scroll to the bottom of the page

From Dev

Scroll to near the bottom of page

From Dev

scroll the a growing page to the bottom

From Dev

Scroll bar in page bottom

From Dev

Scroll to near the bottom of page

From Dev

How to automatically scroll to the bottom in AngularJS?

From Dev

How to scroll the window automatically when mouse moves bottom of the page using jquery

From Dev

JS for smooth scroll to the bottom of the page

From Dev

$mdtoast position bottom of page on scroll

From Dev

JS for smooth scroll to the bottom of the page

From Dev

$mdtoast position bottom of page on scroll

From Dev

Scroll to the Bottom of the Page after postBack

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

scroll to bottom on page load but will allow to scroll on top

From Dev

ng-repeat render and automatically scroll to bottom

From Dev

On Scroll fires automatically on page refresh

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

Laravel - redirect to page and scroll to the bottom of the page

From Dev

how to scroll the page to bottom whenever the page load?

From Dev

WPF ListView Control Scroll to Bottom on PropertyChanged

From Dev

How to scroll to automatically scroll to the bottom of an editable div onload

From Dev

jquery one page scroll start at the bottom

From Dev

Detect if scroll has touched bottom of page

From Dev

Scroll to bottom of page after get request AngularJs

From Dev

How to add some more scroll at the bottom of the page

From Dev

Scroll HTML page before it 'reaches' the bottom

From Dev

How to add some more scroll at the bottom of the page

Related Related

  1. 1

    Scroll Automatically to the Bottom of the Page

  2. 2

    Automatically scroll to bottom as the page loads

  3. 3

    Infinitely scroll to the bottom of the page

  4. 4

    Scroll to near the bottom of page

  5. 5

    scroll the a growing page to the bottom

  6. 6

    Scroll bar in page bottom

  7. 7

    Scroll to near the bottom of page

  8. 8

    How to automatically scroll to the bottom in AngularJS?

  9. 9

    How to scroll the window automatically when mouse moves bottom of the page using jquery

  10. 10

    JS for smooth scroll to the bottom of the page

  11. 11

    $mdtoast position bottom of page on scroll

  12. 12

    JS for smooth scroll to the bottom of the page

  13. 13

    $mdtoast position bottom of page on scroll

  14. 14

    Scroll to the Bottom of the Page after postBack

  15. 15

    scroll to bottom on page load but will allow to scroll on top

  16. 16

    scroll to bottom on page load but will allow to scroll on top

  17. 17

    ng-repeat render and automatically scroll to bottom

  18. 18

    On Scroll fires automatically on page refresh

  19. 19

    Laravel - redirect to page and scroll to the bottom of the page

  20. 20

    Laravel - redirect to page and scroll to the bottom of the page

  21. 21

    how to scroll the page to bottom whenever the page load?

  22. 22

    WPF ListView Control Scroll to Bottom on PropertyChanged

  23. 23

    How to scroll to automatically scroll to the bottom of an editable div onload

  24. 24

    jquery one page scroll start at the bottom

  25. 25

    Detect if scroll has touched bottom of page

  26. 26

    Scroll to bottom of page after get request AngularJs

  27. 27

    How to add some more scroll at the bottom of the page

  28. 28

    Scroll HTML page before it 'reaches' the bottom

  29. 29

    How to add some more scroll at the bottom of the page

HotTag

Archive