You are here : cssCSS 3animation-duration

animation-duration - CSS 3

The animation-duration property defines how many seconds or milliseconds an 
animation takes to complete one cycle.


Syntax

animation-duration: time|initial|inherit;


Example

div {    -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */   
  
    animation-duration: 2s;
    }


Output / Return Value


Limitations


Alternatives / See Also


Reference