Skip to content

Instantly share code, notes, and snippets.

@nalanj
Forked from trosage/gist:2646479
Created May 9, 2012 16:44
Show Gist options
  • Save nalanj/2646524 to your computer and use it in GitHub Desktop.
Save nalanj/2646524 to your computer and use it in GitHub Desktop.
class NavLabels
constructor: () ->
mouseIn = () ->
$(this).animate({
opacity: 1
top: 45
}, 400)
mouseOut = () ->
$(this).animate({
opacity: 0
top: 35
}, 400)
$(".global-nav .nav-label-container").hover(mouseIn, mouseOut)
Featurette.register("nav-labels", NavLabels)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment