Skip to content

Instantly share code, notes, and snippets.

@klamping
klamping / scrollerific.js
Created February 2, 2015 16:32
Scroll thingy
// Container element to add/remove class to
var container = $('body')
// this is the class that will be added to the body tag when the page is scrolled down
var scrollClass = "window-scrolled";
// how far down the page needs to be scrolled for the class to be added
var positionTrigger = 10;
$(window).scroll(function (event) {