<!DOCTYPE html>
<title>Example</title>
<style>
.animate {
background: yellowgreen;
color: olivedrab;
font: 100 16px sans-serif;
min-height: 50px;
animation: myAnimation 3s ease 1s 2 forwards;
}
@keyframes myAnimation {
50% {
min-height: 200px;
</style>
<input type="button" class="animate" value="My Button">