Created
March 29, 2016 03:17
-
-
Save mikemcbride/7f474fc842604119129a to your computer and use it in GitHub Desktop.
Super annoying CSS background color animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // for fun | |
| // add the "annoying" class to anything to give your friends a seizure. | |
| // see it in action: | |
| // http://codepen.io/mmcbride1007/pen/QNMWpe | |
| .annoying { | |
| animation: pulse .2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { | |
| background-color: lime; | |
| } | |
| 33% { | |
| background-color: blue; | |
| } | |
| 66% { | |
| background-color: #ff0080; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment