Created
September 21, 2013 08:12
-
-
Save mateuszkocz/6648464 to your computer and use it in GitHub Desktop.
immediate button reaction in mobile webkit. Source: https://www.mobify.com/blog/beginners-guide-to-perceived-performance/
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.addEventListener("touchstart", function(){}, true) | |
.btn { | |
-webkit-tap-highlight-color: rgba(0,0,0,0); | |
&:active { | |
/* some props */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment