Created
May 13, 2020 17:44
-
-
Save csilverman/f0fd238213ce6d7a45e033bd40e872c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var discreteElements = document.getElementsByClassName('animate-this') | |
for (var i = 0; i < discreteElements.length; i++) { | |
new Waypoint({ | |
element: discreteElements[i], | |
handler: function() { | |
this.element.classList.add("top-50pfrom-topOfWindow"); | |
}, | |
// context: document.getElementById('page-content'), | |
offset: '50%' | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment