Created
February 27, 2015 21:18
-
-
Save kwyn/7d1aed5f36051d551e74 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
function trigger (match, offset, func){ | |
var trigger_height = $(match).offset().top + offset; | |
var element_height = $(match).height(); | |
$(window).on('scroll-tick', function() { | |
var scrolltop = $(window).scrollTop(); | |
if(scrolltop > trigger_height && scrolltop < trigger_height + element_height){ | |
func(); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment