Created
April 23, 2013 09:40
-
-
Save foo9/5442202 to your computer and use it in GitHub Desktop.
スマホ用 疑似ホバー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // スマホ用 疑似ホバー | |
| $('a, input[type="button"], input[type="submit"], button').on('touchstart', function() { | |
| $(this).addClass('hover'); | |
| }).on('touchend', function() { | |
| $(this).removeClass('hover'); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a, input[type="button"], input[type="submit"], button { | |
| &.hover { | |
| opacity: 0.6; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment