Skip to content

Instantly share code, notes, and snippets.

@shaundon
Last active December 30, 2015 11:19
Show Gist options
  • Save shaundon/7822262 to your computer and use it in GitHub Desktop.
Save shaundon/7822262 to your computer and use it in GitHub Desktop.
A CSS animation to swing like a pendulum. Slows slightly at the apexes to simulate physics.
@keyframes pendulum {
0%, 100% { transform: rotate(-5deg); }
10%, 90% { transform: rotate(0deg); }
40%, 60% { transform: rotate(90deg) }
50% { transform: rotate(95deg); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment