-
-
Save nvminhtu/7fff11c9a45811b557f252cb8e8b435c to your computer and use it in GitHub Desktop.
Simple sticky elements with no jQuery plugin
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
| http://daigo.org/2011/09/quick-and-dirty-sticky-elements-when-scrolling-using-jquery/ |
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).scroll(function(){ | |
| var offset = 0; | |
| var sticky = false; | |
| var top = $(window).scrollTop(); | |
| if ($("#wrapper").offset().top < top) { | |
| $("#must-see").addClass("sticky"); | |
| sticky = true; | |
| } else { | |
| $("#must-see").removeClass("sticky"); | |
| } | |
| }); |
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
| .sticky { | |
| position:fixed; top:0; | |
| } |
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
| <div id="wrapper"> | |
| <div id="must-see"> | |
| This will stick when you scroll! | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment