I have a button that changes the image when hovered.
Actually, that's a href with a class class-btn that contains a background-image. When hovered, it has
`a.class-btn:hover`
{
background-image('path/to/image-hovered.jpg');
}
If the page loads the first time and you hover this button the first time, it blinks (it takes about half a second to download the hovered image). How to avoid that blinking without javascript? (only simple css and html is allowed).
Tried to search stackoverflow.com for the similar question, but with no luck.
Just added: Should I "preload" the hovered image? How? Should I play with z-index or opacity?
P.S. It happens with all browsers. The solution should be perfect for all browsers.
