Skip to content

Instantly share code, notes, and snippets.

@JulianJorgensen
Created May 31, 2013 22:25
Show Gist options
  • Select an option

  • Save JulianJorgensen/5688365 to your computer and use it in GitHub Desktop.

Select an option

Save JulianJorgensen/5688365 to your computer and use it in GitHub Desktop.
# Sticky Nav
# ******************************************
if (detectPage() == "home")
$(window).scroll (e) ->
marqueeHeight = $(".marquee").height()
if ($(this).scrollTop() >= marqueeHeight)
$(".mainnav, .mobilenav").css
position: "fixed"
top: "0px"
$(".spacing-fix").css
display: "block"
else
$(".mainnav, .mobilenav").css position: "relative"
$(".spacing-fix").css
display: "none"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment