Skip to content

Latest commit

 

History

History

odo-scroll-animation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Odo Scroll Animation

Performant scroll listeners.

Install

npm install @odopod/odo-scroll-animation --save

Quick Start

import OdoScrollAnimation from '@odopod/odo-scroll-animation';

const scrollElement = document.getElementById('scroller-thing');
const id = OdoScrollAnimation.add(scrollElement, function (scrollTop) {
  console.log('scroller-thing scrolled');
});

Visit the Odo component directory for demos, code examples, and documentation.