Answers for "autoscroll html"

PHP
1

php auto scoll page with output

<script>
var scroller = setInterval(function() {  
    window.scrollTo(0,document.body.scrollHeight);
}, 10); // update every 10 ms, change at will
</script>
<?php
// generate 1000 lines of html code
for($i=0; $i<1000; $i++){
    echo $i . "<br>";
    ob_flush(); // flush out the output as we go
    flush(); // same
    usleep(10000); // add some delay to see it in action  
}

?>

<script>
clearInterval(scroller); // stop updating so that you can scroll up 
</script>
Posted by: Guest on November-25-2020
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

Browse Popular Code Answers by Language