Animation can be used to attract attention. Lets attract attention to our button by making it periodically twitch.
- Create the @keyframes container with a name twitch.
- At 1%, 5%, and 9% set the transform property to rotate 10 degrees.
- At 3%, 7%, and 11% set the transform property to rotate -10 degrees.
- At 13% and 100% set the transform property to rotate 0 degrees.
- Create a CSS rule for .twitch that sets the animation-name property to twitch, the animation-duration to 5s , and the animation-iteration-count to infinite.