Auto scroll down to the bottom of the page

From LemonWiki共筆
Revision as of 15:40, 16 July 2020 by Unknown user (talk) (Created page with "Auto scroll downto the bottom of the page == solutions == * On {{win}}: (1) need a mouse that has a wheel (2) open the browser and input the url (3) press the mouse wheel but...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Auto scroll downto the bottom of the page

solutions

  • On Win   : (1) need a mouse that has a wheel (2) open the browser and input the url (3) press the mouse wheel button and release (4) move the mouse a bit down or a bit up [1][2]
  • On Win   or macOS icon_os_mac.png : input the javascript code into the console of browser[3][4]:
## enable the auto scroll
var scroll = setInterval(function(){window.scrollTo(0, document.body.scrollHeight)},2000);

## stop the auto scroll
clearInterval(scroll);

References