<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
div {
height: 200px;
}
</style>
</head>
<body>
<div>111</div>
<div>222</div>
<div>333</div>
<div>444</div>
<div>555</div>
<script>
var banScBot = (() => {
var y = 0;
return () => {
window.scrollY > y && window.scroll({ top: y });
y = window.scrollY;
};
})();
window.onscroll = banScBot;
</script>
</body>
</html>