Answers for "javascript css autoscroll"

4

javascript css autoscroll

// If you don't know when data comes, you can set an interval:
window.setInterval(function() {
  var elem = document.getElementById('yourDivWithScrollbar');
  elem.scrollTop = elem.scrollHeight;
}, 5000);

// If you do know when data comes, you can do it like the following:
var elem = document.getElementById('yourDivWithScrollbar');
elem.scrollTop = elem.scrollHeight;
Posted by: Guest on April-23-2021
-1

javascript autoscroll

const pageScroll = () => {
  window.setInterval(() => {

    // Scroll 10px all 25ms
    window.scrollBy(0, 10)
  }, 25)
}
Posted by: Guest on March-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language