x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
.animatedBox {
5
  width: 200px;
6
  padding: 5px;
7
  text-align: center;
8
  font: 24px sans-serif;
9
  color: white;
10
  background: yellowgreen;
11
  animation: myAnimation 1s ease 1s 5 alternate forwards;
12
}
13
14
@keyframes myAnimation {
15
  100% {
16
    padding-bottom: 50px;
17
  } 
18
}
19
</style>
20
21
<div class="animatedBox">Animated box</div>