1.0.7 • Published 6 years ago

@wearejust/scroll v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

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'
    });
});