Hi I'm looking for a solution to make jScrollPane auto scroll on page load. I found some similar questions but they are not what I am looking for (scrollBy and scrollTo methods). I currently have the following:
$(function(){
$('.scroll-pane').jScrollPane({
showArrows: true,
autoReinitialise: true
});
});
What I want to achieve is to have my horizontal only jScrollPane scroll my contents (photographs) smoothly: 1. To the right by 300px, 2. Then scroll back to the left by 300px (back to the beginning), 3. And finally stop there.
It is also useful to have a setting that will allow me to control the smoothness/duration/interval of the scrolling.
In case you may be wondering what the use is, I wouldn't want any viewers to miss that they are supposed to scroll that area. You may view the website at: http://www.giamarescotti.com/v2/
Thank you very much in advance for any advice.
Regards, Dave