Skip to content

Instantly share code, notes, and snippets.

@ramseyp
Created March 21, 2013 02:02
Show Gist options
  • Save ramseyp/5210154 to your computer and use it in GitHub Desktop.
Save ramseyp/5210154 to your computer and use it in GitHub Desktop.
$(function() {
var $sidebar = $("#sidebar"),
$window = $(window),
offset = $sidebar.offset(),
topPadding = 20;
$window.scroll(function() {
if ($window.scrollTop() > offset.top) {
$sidebar.stop().animate({
marginTop: $window.scrollTop() - offset.top + topPadding
});
} else {
$sidebar.stop().animate({
marginTop: 0
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment