26 lines
518 B
HTML
26 lines
518 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Scroll me</h1>
|
|
|
|
<script>
|
|
function populate() {
|
|
while(true) {
|
|
let windowRelativeBottom = document.documentElement.getBoundingClientRect().bottom;
|
|
if (windowRelativeBottom > document.documentElement.clientHeight + 100) break;
|
|
document.body.insertAdjacentHTML("beforeend", `<p>Date: ${new Date()}</p>`);
|
|
}
|
|
}
|
|
|
|
window.addEventListener('scroll', populate);
|
|
|
|
populate(); // init document
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|