Answers for "css transition reverse"

CSS
2

animation-direction property

animation-direction  can have the following values -
(1) normal : forward direction, this is the default value.
(2) reverse : the animation sets in the reverse direction ( backward ).
(3) alternate : the animation plays normal first and then reverse.
(4) alternate-reverse: the animation plays reverse first and then normal.


NOTE: animation-duration also matters in animation-direction.
Posted by: Guest on September-10-2020
2

css transform transition

.selector {
  transition: transform 1s;
}
Posted by: Guest on May-27-2020

Browse Popular Code Answers by Language