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

Latest commit

 

History

History
27 lines (22 loc) · 354 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 354 Bytes

Sticky

Installation

npm install @wearejust/sticky --save

Usage

require('@wearejust/sticky');

$(function() {
    $('.sticky').sticky();
});

With options

require('@wearejust/sticky');

$(function() {
    $('.sticky').sticky({
        active: 'is-active',
        topHeightOffset: 0
    });
});