DigitalOcean provides cloud products for every stage of your journey. Get started with $200 in free credit!
The animation
property in CSS can be used to animate many other CSS properties such as color
, background-color
, height
, or width
. Each animation needs to be defined with the @keyframes
at-rule which is then called with the animation
property, like so:
.element {
animation: pulse 5s infinite;
}
@keyframes pulse {
0% {
background-color: #001F3F;
}
100% {
background-color: #FF4136;
}
}
Each @keyframes
at-rule defines what should happen at specific moments during the animation. For example, 0% is the beginning of the animation and 100% is the end. These keyframes can then be controlled either by the shorthand animation
property, or its eight sub-properties, to give more control over how those keyframes should be manipulated.
Sub-properties
animation-name
: declares the name of the@keyframes
at-rule to manipulate.animation-duration
: the length of time it takes for an animation to complete one cycle.animation-timing-function
: establishes preset acceleration curves such asease
orlinear
.animation-delay
: the time between the element being loaded and the start of the animation sequence (cool examples).animation-direction
: sets the direction of the animation after the cycle. Its default resets on each cycle.animation-iteration-count
: the number of times the animation should be performed.animation-fill-mode
: sets which values are applied before/after the animation.
For example, you can set the last state of the animation to remain on screen, or you can set it to switch back to before when the animation began.animation-play-state
: pause/play the animation.
These sub-properties can then be used like so:
@keyframes stretch {
/* declare animation actions here */
}
.element {
animation-name: stretch;
animation-duration: 1.5s;
animation-timing-function: ease-out;
animation-delay: 0s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-fill-mode: none;
animation-play-state: running;
}
/*
is the same as:
*/
.element {
animation:
stretch
1.5s
ease-out
0s
alternate
infinite
none
running;
}
Here’s a full list of which values each of these sub-properties can take:
animation-timing-function | ease, ease-out, ease-in, ease-in-out, linear, cubic-bezier(x1, y1, x2, y2) (e.g. cubic-bezier(0.5, 0.2, 0.3, 1.0)) |
animation-duration | Xs or Xms |
animation-delay | Xs or Xms |
animation-iteration-count | X |
animation-fill-mode | forwards, backwards, both, none |
animation-direction | normal, alternate |
animation-play-state | paused, running, running |
Multiple steps
If an animation has the same starting and ending properties, it’s useful to comma-separate the 0% and 100% values inside @keyframes
:
@keyframes pulse {
0%, 100% {
background-color: yellow;
}
50% {
background-color: red;
}
}
Multiple animations
You can comma-separate the values to declare multiple animations on a selector as well. In the example below, we want to change the color of the circle in a @keyframe
whilst also nudging it from side to side with another.
.element {
animation:
pulse 3s ease infinite alternate,
nudge 5s linear infinite alternate;
}
Performance
Animating most properties is a performance concern, so we should proceed with caution before animating any property. However, there are certain combinations that can be animated safely:
transform: translate()
transform: scale()
transform: rotate()
opacity
Which properties can be animated?
MDN has a list of CSS properties which can be animated. Animatable properties tend to colors and numbers. An example a non-animatable property is background-image
.
Browser support
This browser support data is from Caniuse, which has more detail. A number indicates that browser supports the feature at that version and up.
Desktop
Chrome | Firefox | IE | Edge | Safari |
---|---|---|---|---|
4* | 5* | 10 | 12 | 5.1* |
Mobile / Tablet
Android Chrome | Android Firefox | Android | iOS Safari |
---|---|---|---|
127 | 127 | 4* | 6.0-6.1* |
More information
- Using CSS animations (MDN)
- CSS Animations Level 1 (W3C specification)
- CSS Animation Shorthand Property (DigitalOcean)
- Web animation at work (A List Apart)
- Five ways to animate responsibly (24 Ways)
THIS IS SO COOL THANKS
Nice
Hey,
as far as I know, Opera has also implemented animations using the -o- -prefix. Maybe this calls for an update?
Also, using the -webkit- prefix in your examples could possibly promote the bad practice of using -webkit- only. Maybe such examples need to be changed to the prefix-free version instead?
Best regards,
Adam Avramov
Fixing now, thanks.
They are definitely great and better than other tutorials! Thanks, Chris!
Hi Chris,
I’m not sure if you’re aware, but @-ms-keyframes has never existed. IE10+ supports the @keyframes property, and < IE9 doesn’t support animation at all.
I did know that, this was way out of date that way (pre me knowing that I guess). Got it fixed up.
hello sir,
I want to run animation form{left:0}to{left:75px} then i want to stop my content at place left:75px; permanently until i move my mouse out. Is this possible???if yes then how?????? Please help
May be you have already figured it out, but this introductory video in this link explains what you’re trying to do.
http://www.lynda.com/Edge-Animate-tutorials/Web-Motion-Beginners-Animate-CSS-Sprite-Sheet/149119-2.html
The introductory video is free so you won’t need to pay for a subscription (assuming you do not have a Lynda subscription).
Use this with your animation–
-webkit-animation-fill-mode: forwards;
Hi I used CSS-Animations for a little Game:
http://mg-otterson.de/fileadmin/puzzle/index.html
Just adding elements with jQuery a class with animation, this makes it pretty easy!
Another great post! Plenty of food for thought here.
“animation-fill-mode: forwards;”
By using this, whatever you have in “to” condition will remain there.
I dumped in the same problem, but studying the css code library I’ve easily found the solution to “stop” then animation to the last color chosen.
The code has its rules:
animation-fill-mode REQUIRES the animation-iteration-count to perform the action to allow the “stop in the end” mode.
So, here is the code to add to make it works and have fun:
animation-iteration-count: 1;
-webkit-animation-iteration-count: 1; /* Chrome and Safari /
animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards; / Chrome and Safari */
Code tested in Edge, Safari, Chrome and Mozilla. Maxthon works only if updated ( …or if developers update it -.-” ).
Have a nice day!
I was wondering if there is other options instead of ‘alternate’. Please help!
Alex Safayan
This teachings on animations are amaizing!!
great article
multiline blocks of code in in triple <– two “in”s
Any clever ideas on starting an animation like this when doing DOM insertion?
You are learning website based languages visit: http://webanalysttips.blogspot.in/
Is it required to use “-webkit-” while using animations in chrome. I tried them using “-webkit-” but for each animation i have to write code again this leads to very large sizes of my files that i don’t you can see http://www.djhisar.tk http://www.djhisar.tk. Any suggestions to minify css animation.????
Take a look at using something like SASS, along with Compass…
You could also use postCSS along with Grunt/Gulp to save you some more time.
Even better, use all of them together, and you’re laughing.
This won’t shrink the CSS filesize (although Grunt/Gulp can be used to minify your CSS for you, on the fly), the prefixes have to be there for complete support… What it will do is allow you to just write one line of CSS, and have all the vendor prefixes automatically applied for you.
Great post about css3 animation :)
http://www.bixelio.com/2014/11/css3-animation.html
Simple and important css tags for animation. Section Of Sub Properties is best one.
:)
The MDN list of animatable properties seems to have disappeared. :(
css animation simple trick knowledge
var red = [0, 100, 63];
var orange = [40, 100, 60];
var green = [75, 100, 40];
var blue = [196, 77, 55];
var purple = [280, 50, 60];
var myName = “EMMANUEL”;
letterColors =[orange,red,blue,green,purple]
if(15 > 5) {
bubbleShape = “circle”;
}
else {
bubbleShape = “square”;
}
drawName(myName, letterColors);
bounceName()
bounceBubbles()
Hi Chris, if would can you tell me what CSS animation that is being used in this website? https://phoenix-startup.com/?ref=wg I think it’s a beautiful design!!
Wow, Amazing tricks, Thank you very much! Everything well explained!
How to stop moving circle coming from right or left at a particular point.
I can’t understand when I set opaticy 0 in 100% keyframes, the element will keep origin and create other element for animation.It’s my illusion?
ps: you can see this url: https://codepen.io/alphardex/pen/XWWWBmQ which I learn.
Is there a way to manipulate more than one class within one keyframe?