Skip to content

Instantly share code, notes, and snippets.

@is8r
Created May 2, 2013 04:04
Show Gist options
  • Save is8r/5500080 to your computer and use it in GitHub Desktop.
Save is8r/5500080 to your computer and use it in GitHub Desktop.
リンクをマウスオンアウトでフェードインアウトさせる
$ ->
$('.fade').each (i, el) =>
$(el).mouseenter ->
$(@).stop().fadeTo(300, .2)
$(el).mouseleave ->
$(@).stop().fadeTo(300, 1.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment