I have this code that is using jQuery, but I want to know is is possible to achieve the same result using only CSS. This is my code on Codepen: https://codepen.io/dj-smoke
I made again :)
body {
background-color: #ffffd;
padding: 1em;
}
.cardWrap {
display:flex;
flex-direction:column-reverse;
}
.card {
background:#fff;
animation: slide 0.5s linear both;
margin-bottom: 0;
opacity: 0;
padding:0;
height:0px;
width:0px;
}
.card:nth-child(1) {
animation: card1 .3s forwards .5s;
}
.card:nth-child(2) {
animation: card1 .3s forwards 1.5s;
}
.card:nth-child(3) {
animation: card1 .3s forwards 2.5s;
}
.card:nth-child(4) {
animation: card1 .3s forwards 3.5s;
}
.card:nth-child(5) {
animation: card1 .3s forwards 4.5s;
}
.card:nth-child(6) {
animation: card1 .3s forwards 5.5s;
}
.card:nth-child(7) {
animation: card1 .3s forwards 6.5s;
}
.card:nth-child(8) {
animation: card1 .3s forwards 7.5s;
}
.card:nth-child(9) {
animation: card1 .3s forwards 8.5s;
}
.card:nth-child(10) {
animation: card1 .3s forwards 9.5s;
}
.card:nth-child(11) {
animation: card1 .3s forwards 10.5s;
}
@keyframes card1{
to{opacity:1;height:auto;width:auto;padding:5px;margin-bottom: 1em;}
}
pushed DOWN
10 - Itin
9 - Itin
8 - Itin
7 - Itin
6 - Itin
5 - Itin
4 - Itin
3 - Itin
2 - Itin
1 - Itin