Skip to content

Instantly share code, notes, and snippets.

@mikemcbride
Created March 29, 2016 03:17
Show Gist options
  • Select an option

  • Save mikemcbride/7f474fc842604119129a to your computer and use it in GitHub Desktop.

Select an option

Save mikemcbride/7f474fc842604119129a to your computer and use it in GitHub Desktop.
Super annoying CSS background color animation
// 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