Why transformation: scale is not saved: hover over?
I am using this CSS:
.link {
transition: all .2s ease-in-out;
}
.link:hover {
transform: scale(1.1);
}
When I find the text, it scales to 110% as expected, but once the transition is complete, it scales to 100% even if the mouse is still in the text.
When I remove the mouse pointer from the text, the animation is scaled to 110% and then back to 100% during the flash.
See this fiddle for a demo.
How can I get it to remain at 110% scale until the pointer leaves the text?
+3
source to share