Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cherifya/6319818 to your computer and use it in GitHub Desktop.
Save cherifya/6319818 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