CSS - Tin Up In Effect
HTML
<div class="tinUpIn">
</div>
CSS
div {
background: #61A6AB;
border-radius: 2px;
height: 100px;
width: 100px;
}
.tinUpIn {
animation: tinUpIn 1s forwards;
}
@keyframes tinUpIn {
0% {
opacity: 0;
transform: scale(1,1) translateY(-900%);
}
50%,
70%,
90% {
opacity: 1;
transform: scale(1.1,1.1) translateY(0);
}
100%,
60%,
80% {
opacity: 1;
transform: scale(1,1) translateY(0);
}
}