I'm trying to get the onScroll plugin working with my horizontal webpage that is something like that :
<div id="container">
<div class="column"><p>01</p></div>
<div class="column"><p>02</p></div>
<div class="column"><p>03</p></div>
<div class="column"><p>04</p></div>
<div class="column"><p>05</p></div>
<div class="column"><p>06</p></div>
<div class="column"><p>07</p></div>
<div class="column"><p>08</p></div>
<div class="column"><p>09</p></div>
<div class="column"><p>10</p></div>
</div>
Here is a jsfiddle shot of what I have : EDIT HERE IS THE LAST ONE -> http://jsfiddle.net/UcQpA/7/
My goal is to get something similar to this demo with the onScroll plugin : http://silvestreh.github.io/onScreen/horizontal.html
Unfortunately, as the website of the demo is made with HTML5 and mine with XHTML, I don't understand how it's actually working.
Could you please help me ?
Thank you ! :)