Skip to content

Instantly share code, notes, and snippets.

@danielmatthew
Created February 25, 2014 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielmatthew/9205095 to your computer and use it in GitHub Desktop.
Save danielmatthew/9205095 to your computer and use it in GitHub Desktop.
Reduces element margin on scroll. Useful with fixed element.
$(window).scroll(function()
{
$("#phone").css("margin-top",Math.max(0,970-$(this).scrollTop()));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment