Skip to content

Instantly share code, notes, and snippets.

@flexbox
Last active August 29, 2015 14:05
Show Gist options
  • Save flexbox/d2d20cd49780feb0e43f to your computer and use it in GitHub Desktop.
Save flexbox/d2d20cd49780feb0e43f to your computer and use it in GitHub Desktop.
Show / hide magellan expedition in page. See the demo http://tallwave.com/
.is-hidden {
display:none;
}
$(window).scroll(function(){
// Get container scroll position
var fromTop = $(this).scrollTop() + topMenuHeight;
//Check if we should be showing magellan or not
if($('[data-magellan-expedition]').length >0){
var lastBottomOffset = $('[data-magellan-destination]').last().offset().top + $('[data-magellan-destination]').last().outerHeight();
if(fromTop>lastBottomOffset){
$('[data-magellan-expedition]').addClass('is-hidden');
} else{
$('[data-magellan-expedition]').removeClass('is-hidden');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment