Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 316 Bytes

File metadata and controls

19 lines (14 loc) · 316 Bytes

vanillaScrolly

Tools for scrollytelling

Init

Embed the main JS file js/vanilla-scrolly.js

Trigger when ready !

(function(){
    new vanillaScrolly(document.getElementById('sticky'), {
        callback:  function($item, percent, step) {
            console.log(percent);
        }
    });
}());