Need Divs To Be Push Down Using Only Css
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-starboy/
Solution 1:
I made again :)
body {
background-color: #ddd;
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;}
}
<divclass="cardWrap"><divclass="card">pushed DOWN</div><divclass="card">10 - Itin</div><divclass="card">9 - Itin</div><divclass="card">8 - Itin</div><divclass="card">7 - Itin</div><divclass="card">6 - Itin</div><divclass="card">5 - Itin</div><divclass="card">4 - Itin</div><divclass="card">3 - Itin</div><divclass="card">2 - Itin</div><divclass="card">1 - Itin</div></div>
Post a Comment for "Need Divs To Be Push Down Using Only Css"