Skip to content

Instantly share code, notes, and snippets.

@TheXenocide
Created October 2, 2012 21:59
Show Gist options
  • Save TheXenocide/3823578 to your computer and use it in GitHub Desktop.
Save TheXenocide/3823578 to your computer and use it in GitHub Desktop.
Float my tumblr sidebar
(function($) {
$(function() {
var $sidebar = $('#sidebar');
var $win = $(window);
var origOffset = $sidebar.offset().top;
$win.scroll(function() {
var top = $win.scrollTop();
var offset = $win.scrollTop() - $sidebar.offset().top;
var overlap = $sidebar.height() - $win.height();
if (offset > 0 && overlap <= 0) {
$sidebar.addClass('floatTop');
} else if (top < origOffset || overlap > 0) {
$sidebar.removeClass('floatTop');
}
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment