---
title: CSS Animations
slug: Web/CSS/CSS_Animations
tags:
- CSS
- CSS Animations
- Experimental
- Overview
- Reference
translation_of: Web/CSS/CSS_Animations
---
{{CSSRef}}{{SeeCompatTable}}
CSS Animations is a module of CSS that defines how to animate the values of CSS properties over time, using keyframes. The behavior of these keyframe animations can be controlled by specifying their duration, their number of repetitions, and how they repeat.
Reference
CSS Properties
- {{cssxref("animation")}}
- {{cssxref("animation")}}
- {{cssxref("animation-delay")}}
- {{cssxref("animation-direction")}}
- {{cssxref("animation-duration")}}
- {{cssxref("animation-fill-mode")}}
- {{cssxref("animation-iteration-count")}}
- {{cssxref("animation-name")}}
- {{cssxref("animation-play-state")}}
- {{cssxref("animation-timing-function")}}
CSS At-rules
- {{cssxref("@keyframes")}}
Guides
- Detecting CSS animation support
- Describes a technique for detecting if the browser supports CSS animations.
- Using CSS animations
- Step-by-step tutorial about how to create animations using CSS, this article describes each relevant CSS property and at-rule and explains how they interact.
Specifications
Specification |
Status |
Comment |
{{ SpecName('CSS3 Animations') }} |
{{ Spec2('CSS3 Animations') }} |
Initial definition. |
Browser compatibility
{{Compat("css.properties.animation")}}
See also
- Related to CSS Animations, CSS Transitions can trigger animations on user actions.