On Scroll Animation Library

About

This is a small snippet, that provides on scroll animation.
It can be used on any element with any css animation.

This plugin is designed for scrollable containers.
If your entire document is scrolled you can still use this by setting the body to screen size and giving it an ID.

Tutorial

Installation

  1. Copy the reveal-on-scroll.js or reveal-on-scroll.min.js to your directrory.
  2. Include it in your HTML document
  3. Include one of the given css animations in your css or use your own css animation.

Use

To create a new OnScroll effect use: var yourOnScroll = new OnScroll();
You can change the parameters as follows:

If your elements are not direct children of the scrolled container and one or more containers in between (in the DOM hirachy) of the scrolled container and the element, use yourOnScroll.z_index(number).
Number specifies the number of containers in between that are NOT positioned static.
If you don’t know if this is the case, try without using this property.

After all parameters have been set, call yourOnScroll.onScrollDetected(); to check whether there are animated elements visible on startup and animate them.

Examples

FAQ