For example, I want the page to scroll down automatically when I approach until there is 10px of space at the bottom. I want the same scenario to happen when I move the cursor up.
#list-container{
background-color: rebeccapurple;
cursor: default;
overflow-y: auto;
height: 200px;
padding: 10px;
}
#list{
padding: 10px;
margin: 10px;
}
<div id="list-container">
<ol id="list" >
<li>zero</li>
<li>one</li>
<li>two</li>
<li>three</li>
<li>four</li>
<li>five</li>
<li>six</li>
<li>seven</li>
<li>eight</li>
<li>nine</li>
<li>ten</li>
<li>eleven</li>
<li>twelve</li>
<li>thirteen</li>
<li>fourteen</li>
<li>fifteen</li>
</ol>
</div>