--- title: CSS Animations slug: Web/CSS/CSS_Animations tags: - CSS - CSS Animations - Overview - Reference translation_of: Web/CSS/CSS_Animations ---
{{CSSRef}}

CSS Animations is a module of CSS that lets you animate the values of CSS properties over time, using keyframes. The behavior of these keyframe animations can be controlled by specifying their timing function, duration, their number of repetitions, and other attributes.

Reference

CSS Properties

CSS At-rules

Guides

Detecting CSS animation support
Describes a technique for detecting if a 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 with each other.
CSS animations tips and tricks
Tips and tricks to help you get the most out of CSS animations. Currently offers a technique for replaying an animation which has already run through to completion, which the API doesn't support inherently.

Specifications

Specification Status Comment
{{ SpecName('CSS3 Animations') }} {{ Spec2('CSS3 Animations') }} Initial definition.

Browser compatibility

animation property

{{Compat("css.properties.animation")}}

See also