Created
February 7, 2017 14:43
-
-
Save Farmatique/e6122536aa3a1247177cf5672ac83a24 to your computer and use it in GitHub Desktop.
Hover on iOS mobile
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
| $(document).ready(function() { | |
| $('.hover').bind('touchstart touchend', function(e) { | |
| e.preventDefault(); | |
| $(this).toggleClass('hover_effect'); | |
| }); | |
| }); | |
| element:hover, element.hover_effect { | |
| rule:properties; | |
| } | |
| .hover { | |
| -webkit-user-select: none; | |
| -webkit-touch-callout: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment