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