scrimba
7 CSS Challenges
Solution - CSS Challenge 4 - Logo 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

Solution - CSS Challenge 4 - Logo Animation
AboutCommentsNotes
Solution - CSS Challenge 4 - Logo Animation
Expand for more info
index.css
run
preview
console
/* DON'T TOUCH THIS! */
body {
margin: 0;
padding: 0;
background: #474747;
}

.squares {

}

div[class^="square"] {
height: 25vh;
width: 100%;
margin: 0;
padding: 0;
}

.square1 {
background: #ffa9a3;
}

.square2 {
background: #4e82c2;
}

.square3 {
background: #4ec267;
}

.square4 {
background: #f2fa87;
}

/* DON'T TOUCH THIS! */

/* Your goal is to animate the bars shown on the screen so that they all turn into a single color sequentially. There should be a little bit of time between each bar changing color, so that it gives the appearance of a gradual transition. */
Console
/index.html
-6:29