All Projects → asvd → Syncscroll

asvd / Syncscroll

Licence: mit
scroll two or more areas simultaneously

Programming Languages

javascript
184084 projects - #8 most used programming language

syncscroll

Syncscroll is a micro library (946 bytes minified) written in vanilla javascript, which allows to scroll two or more scrollable areas simultaneously (online demo).

Usage

Download and unpack the distribution, or install it using Bower:

$ bower install syncscroll

Load the syncscroll.js in a preferable way (that is an UMD module):

<script src="path/to/syncscroll.js"></script>

Create the scrollable elements which you need to be synchroniously scrolled, add the syncscroll class for them, and set the name attribute to the same value:

<div class=syncscroll name=myElements>
    First big text goes here...
</div>

<div class=syncscroll name=myElements>
    Second big text goes there...
</div>

That's it! Now the elements will be scrolled simultaneously. Keep in mind that scrolling is synchronized proportionally, and not by amount of pixels.

If you update a set of synchronized elements by changing the classes or attributes, invoke syncscroll.reset() to update the listeners.

Have fun!

follow me on twitter: https://twitter.com/asvd0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].