scrimba
CSS animations
Defining Animations
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

Defining Animations
AboutCommentsNotes
Defining Animations
Expand for more info
index.css
run
preview
console
.box {
width: 50px;
height: 50px;
background: red;
border: 1px solid black;
animation-name: grow;
animation-duration: 2s;
}
Console
/index.html
-7:33