Skip to content

Instantly share code, notes, and snippets.

@foo9
Created April 23, 2013 09:40
Show Gist options
  • Select an option

  • Save foo9/5442202 to your computer and use it in GitHub Desktop.

Select an option

Save foo9/5442202 to your computer and use it in GitHub Desktop.
スマホ用 疑似ホバー
// スマホ用 疑似ホバー
$('a, input[type="button"], input[type="submit"], button').on('touchstart', function() {
$(this).addClass('hover');
}).on('touchend', function() {
$(this).removeClass('hover');
});
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