scrimba
CSS animations
Animation Shorthand
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Animation Shorthand
AboutCommentsNotes
Animation Shorthand
Expand for more info
index.css
run
preview
console
.box {
width: 100px;
height: 100px;
background: blue;
border: 1px solid black;
animation-name: grow;
animation-duration: 1s;
animation-timing-function: ease-in;
animation-delay: 1s;
animation-iteration-count: 4;
animation-direction: alternate;
animation-fill-mode: both;
}

@keyframes grow {
from {width: 100px; height: 100px; background: blue;}
to {width: 10px; height: 10px; background: red;}
}
Console
/index.html
-3:48