2019-10-01
Link hover animation
When hovering over an element it often changes appearence. To make it smooth you can add an animation.
.element {
background: red;
transition: all 0.3s ease;
}
.element:hover {
background: green;
}
Page 1 of 1 - 1 post
When hovering over an element it often changes appearence. To make it smooth you can add an animation.
.element {
background: red;
transition: all 0.3s ease;
}
.element:hover {
background: green;
}
Comments