scrimba
CSS Animation
Animation
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
by
AboutCommentsNotes
Animation
by
Expand for more info
index.css
run
preview
console
.box {
width: 80px;
height: 80px;
margin: 80px;
background-image: linear-gradient(
45deg,
#fa8bff 0%,
#2bd2ff 52%,
#2bff88 90%
);

}

.box:hover {

}

/* Definerar vad som ska ändras i animation vid viss % av förloppet*/
@keyframes demo {
0% {

}

100% {

}
}
Console
/index.html
-4:33