Skip to content

Instantly share code, notes, and snippets.

@stivenson
Created December 23, 2017 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stivenson/0890446fcb52b4c2b7d81983c6882b22 to your computer and use it in GitHub Desktop.
Save stivenson/0890446fcb52b4c2b7d81983c6882b22 to your computer and use it in GitHub Desktop.
Flicker color on div
.background-flicker {
background-color: #FFF;
animation: flicker 2s;
-webkit-animation: flicker 2s;
-moz-animation: flicker 2s;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite
}
@keyframes flicker {
0%, 100% {
box-shadow: 0 0 10px #fff
}
50% {
box-shadow: 0 0 50px #fff
}
}
@-webkit-keyframes flicker {
0%, 100% {
-webkit-box-shadow: 0 0 10px #fff
}
50% {
-webkit-box-shadow: 0 0 50px #fff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment