W3C

Bert Bos | CSS3 – animations

Animations

Animations

Just one demo

For lack of timeā€¦

Animations demo

span:nth-child(1){
 animation: cloud1 ease-in-out 10s infinite;
}
@keyframes cloud1 {
  from { left: 10px }
  50% { left: 90px }
  to { left: 10px }
}