x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
.animatedBox {
5
  width: 300px;
6
  height: 100px;
7
  text-align: center;
8
  font: 24px/40px sans-serif;
9
  color: white;
10
  background: skyblue url('/pix/samples/albatross.png') no-repeat bottom center / 80%;
11
  animation: myAnimation 3s ease 1s 3 alternate forwards;
12
}
13
14
@keyframes myAnimation {
15
  100% {
16
    height: 300px;
17
  }
18
}
19
</style>
20
21
<div class="animatedBox">Royal Albatross</div>