x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
.animate {
5
background: yellowgreen;
6
color: olivedrab;
7
font: 100 16px sans-serif;
8
min-height: 50px;
9
animation: myAnimation 3s ease 1s 2 forwards;
10
}
11
12
@keyframes myAnimation {
13
    50% {
14
      min-height: 200px;
15
    }
16
}
17
</style>
18
19
20
<input type="button" class="animate" value="My Button">