Answers for "transition all 1s ease-out"

CSS
0

out transition does not ease

.button {
    transition: all 0.35s ease-in-out;   /* Hover off */
}
.button:hover {
    transition: all 1s ease-in;         /* On hover */
}
Posted by: Guest on May-09-2021
0

ease in out css

transition: all 0.35s ease-in-out;
Posted by: Guest on November-16-2021

Browse Popular Code Answers by Language