x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
.animated {
5
  font: 100 2em sans-serif;
6
  letter-spacing: -2em;
7
  animation: myAnimation 1s ease 1s 5 alternate forwards;
8
}
9
10
@keyframes myAnimation {
11
  100% {
12
    letter-spacing: 1em;
13
  }
14
}
15
</style>
16
17
18
<h1 class="animated">Bounce</h1>