Question

I have a website which shows some information on hovering over an image it works fine in every device except iphone i need to keep on pressing the screen till the hover completes the transition. i need it to work under single tap it should show the information.Here is the code i used for the website hover transition.

               { -webkit-transition: all .5s ease-in-out 0.5s;
            -moz-transition: all .5s  ease-in-out 0.5s;
         -o-transition: all .5s  ease-in-out 0.5s;
         -ms-transition: all .5s  ease-in-out 0.5s;
         transition: all .5s  ease-in-out 0.5s; } 
Was it helpful?

Solution

It is impossible to hover on iPhone because there is only pressed, and not pressed. There is no mouse to hover over the object, therefore it does not see it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top