HTML
<div class="div"></div>
CSS
body {
margin: 0;
}
.div {
height: 100px;
background-color: cyan;
border:1px solid red;
transform-origin: top;
animation: moveup 3s forwards linear;
}
@keyframes moveup {
from {
transform: scaleY(1)
}
to {
transform: scaleY(0)
}
}