Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created October 10, 2012 20:17
Show Gist options
  • Save fleeting/3868140 to your computer and use it in GitHub Desktop.
Save fleeting/3868140 to your computer and use it in GitHub Desktop.
$(window).scroll(function() {
var pos = $(window).scrollTop();
var el = $('.side-info');
if(pos > 90 && el.is(':visible')) {
el.fadeOut('fast');
} else if(pos < 90 && el.is(':hidden')) {
el.slideDown('slow');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment