Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.

wearejust/scroll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scroll

Installation

npm install @wearejust/scroll --save-dev

Usage

var Scroll = require('@wearejust/scroll');

$(function() {
    Scroll.init();
});

With options

var Scroll = require('@wearejust/scroll');

$(function() {
    Scroll.init({
		active: 'active',
		delay: 200,
		delayHorizontal: 50,
		gap: 0.1,
		parseOnInit: true,
		priority: 'scroll-priority',
		selector: '.scroll'
    });
});