x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
img {
5
  animation: myAnimation 2s ease 1s 3 alternate forwards;
6
}
7
8
@keyframes myAnimation {
9
  100% {
10
    transform: rotate(360deg);
11
  }
12
}
13
</style>
14
15
<img src="/pix/samples/3s.jpg" alt="Scenery in New Zealand">