Skip to content

Instantly share code, notes, and snippets.

@pixmin
Last active May 30, 2018 09:17
Show Gist options
  • Select an option

  • Save pixmin/e5c2d09d65beb2f39bbdc06ee214604a to your computer and use it in GitHub Desktop.

Select an option

Save pixmin/e5c2d09d65beb2f39bbdc06ee214604a to your computer and use it in GitHub Desktop.
Codi #3 CSS Animations & Transitions

CSS Animations & Transitions

Transitions

Depart > Fin

  • transition-property
  • transition-duration s/ms
  • transition-timing-function
  • transition-delay

Animations

@keyframes myAnimation {
  from { color: blue }
  35% { color: green }
  to { color: red }
}
```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment