CSS3 keyframes
by borayeris
HTML
<div>test</div>
CSS
div{
background: red;
width: 120px;
padding-top: 100px;
animation: test 1s;
}
@keyframes test {
from { padding-top: 300px; }
to { padding-top: 100px; }
}
by borayeris
<div>test</div>
div{
background: red;
width: 120px;
padding-top: 100px;
animation: test 1s;
}
@keyframes test {
from { padding-top: 300px; }
to { padding-top: 100px; }
}