Transitions
a {
color : green;
transition: 1s;
}
a:hover {
color: orange;
}Example
code {
color: black;
font-size: 85%;
background-color: rgba(255,255,255,0.9);
transition: all 2s ease-in 50ms;
}
code:hover {
color: red;
font-size: 120%;
background-color: rgba(255,255,255,0.8);
}Transition Usage
Transitionend event
Last updated