1
I finished my responsive site and now I’m in the testing phase on mobile phones and tablets. But I came across an extremely unpleasant navigation on mobile phones and tablets, because the effects :hover
which I have placed are interfering by sliding your finger (touch) on the devices. The effects are triggered when tapped to scroll through the page.
The effects I have (:hover
) on the site and would like to disable on screens smaller than 768px (already have a breikpoint @media queries at this point ) are?
-webkit-transform:scale(1.1);
-webkit-transition: all .2s ease-in;
I appreciate some help.
Why don’t you do the reverse ? just enable Hover for screens higher than 768px?
– Gabriel Rodrigues
It is a great idea. Thanks. But there is no function for this? I have to "None" up to 768 px, but it did not work. If it doesn’t exist I’ll do just as you said, sheltered
– GOLX