diff --git a/index.php b/index.php index f41ad05..21ed213 100644 --- a/index.php +++ b/index.php @@ -146,6 +146,7 @@ setInterval(() => { if (box.scrollTop + box.clientHeight >= box.scrollHeight) scrollDirection = -1; if (box.scrollTop <= 0) scrollDirection = 1; box.scrollTop += scrollDirection * 1; + } }, 100); </script>