I have a Div with 395px
of Height, and overflow
hidden
, like this:
<style>
#content {
width: 100%;
height: 395px;
overflow: hidden;
}
</style>
<div id="content">
1<br>2<br>3<br>4<br>......<br>29<br>30<br>
1<br>2<br>3<br>4<br>......<br>29<br>30<br>
</div>
<a href="#">UP</a>
<a href="#">DOWN</a>
The buttons should scroll the content of the div, but not in Mouse Over, I want to a single click scroll 132px of height and with EaseOutCubic. I found a lot of scroller, but all with Mouse over, I need them working with the Mouse Click.