iOS hover effect on tap and not on click

css, hover, ios

Solution

I got it!

just add `ontouchstart=""` to your body tag:

<body ontouchstart=""> ...

Problem

I always thought the hover effect on iOS devices is only visible on a complete "click" (or "touch") but then i found this page: http://www.theverge.com/2013/2/19/4004250/sunrise-for-iphone-calendar-app-for-a-post-google-world Here the hover effect is visible when I just tap on an element (without delay) and leaves when i leave my finger - no complete click is necessary. I don't get it. What is the trick?

Original source