files/en-us/web/css/reference/properties/animation-duration/index.md
The animation-duration CSS property sets the length of time that an animation takes to complete one cycle.
It is often convenient to use the shorthand property {{ cssxref("animation") }} to set all animation properties at once.
{{InteractiveExample("CSS Demo: animation-duration")}}
animation-duration: 750ms;
animation-duration: 3s;
animation-duration: 0s;
<section class="flex-column" id="default-example">
<div class="animating" id="example-element"></div>
<button id="play-pause">Play</button>
</section>
#example-element {
animation-direction: alternate;
animation-iteration-count: infinite;
animation-name: slide;
animation-play-state: paused;
animation-timing-function: ease-in;
background-color: #1766aa;
border-radius: 50%;
border: 5px solid #333333;
color: white;
height: 150px;
margin: auto;
margin-left: 0;
width: 150px;
}
#example-element.running {
animation-play-state: running;
}
#play-pause {
font-size: 2rem;
}
@keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}
const el = document.getElementById("example-element");
const button = document.getElementById("play-pause");
button.addEventListener("click", () => {
if (el.classList.contains("running")) {
el.classList.remove("running");
button.textContent = "Play";
} else {
el.classList.add("running");
button.textContent = "Pause";
}
});
/* Single animation */
animation-duration: auto; /* Default */
animation-duration: 6s;
animation-duration: 120ms;
/* Multiple animations */
animation-duration: 1.64s, 15.22s;
animation-duration: 10s, 35s, 230ms;
/* Global values */
animation-duration: inherit;
animation-duration: initial;
animation-duration: revert;
animation-duration: revert-layer;
animation-duration: unset;
auto
auto is equivalent to a value of 0s (see below). For CSS scroll-driven animations, auto fills the entire timeline with the animation.{{cssxref("<time>")}}
: The time that an animation takes to complete one cycle. This may be specified in either seconds (s) or milliseconds (ms). The value must be positive or zero and the unit is required.
If no value is provided, the default value of 0s is used, in which case the animation still executes (the animationStart and animationEnd events are fired). Whether or not the animation will be visible when the duration is 0s will depend on the value of {{cssxref("animation-fill-mode")}}, as explained below:
animation-fill-mode is set to backwards or both, the first frame of the animation as defined by animation-direction will be displayed during {{cssxref("animation-delay")}} countdown.animation-fill-mode is set to forwards or both, the last frame of the animation will be displayed, as defined by animation-direction, after the animation-delay expires.animation-fill-mode is set to none, the animation will have no visible effect.[!NOTE] Negative values are invalid, causing the declaration to be ignored. Some early, prefixed, implementations may consider them as identical to
0s.
[!NOTE] When you specify multiple comma-separated values on an
animation-*property, they are applied to the animations in the order in which the {{cssxref("animation-name")}}s appear. For situations where the number of animations andanimation-*property values do not match, see Setting multiple animation property values.
[!NOTE] When creating CSS scroll-driven animations, specifying an
animation-durationvalue in seconds or milliseconds doesn't really make sense. In tests, it seemed to have no effect on scroll progress timeline animations, while on view progress timeline animations it seemed to push the animation to happen nearer the end of the timeline. However, Firefox requires ananimation-durationto be set for it to successfully apply the animation. You are therefore advised to setanimation-durationto1msso that animations will work in Firefox, but the effect is not altered too much by it.
{{cssinfo}}
{{csssyntax}}
This animation has an animation-duration of 0.7 seconds.
<div class="box"></div>
.box {
background-color: rebeccapurple;
border-radius: 10px;
width: 100px;
height: 100px;
}
.box:hover {
animation-name: rotate;
animation-duration: 0.7s;
}
@keyframes rotate {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
Hover over the rectangle to start the animation.
{{EmbedLiveSample("Setting animation duration","100%","250")}}
See CSS animations for more examples.
{{Specifications}}
{{Compat}}