Created
April 20, 2015 03:51
-
-
Save srinathweb/f30e08fa44504d639c31 to your computer and use it in GitHub Desktop.
scroling
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
| $(window).on('scroll', function() { | |
| var y_scroll_pos = window.pageYOffset; | |
| var scroll_pos_test = 150; // set to whatever you want it to be | |
| if(y_scroll_pos > scroll_pos_test) { | |
| //do stuff | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment