Created
April 24, 2012 13:08
-
-
Save pahund/2479514 to your computer and use it in GitHub Desktop.
CSS animation - glowing black box
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
/** | |
* CSS animation - glowing black box | |
*/ | |
@keyframes rainbow { | |
from, to { box-shadow: 0 0 15px 0 red } | |
16% { box-shadow: 0 0 15px 0 yellow } | |
32% { box-shadow: 0 0 15px 0 green } | |
48% { box-shadow: 0 0 15px 0 aqua } | |
64% { box-shadow: 0 0 15px 0 blue } | |
80% { box-shadow: 0 0 15px 0 fuchsia } | |
} | |
body { | |
color: white; | |
background-color: black; | |
} | |
div { | |
position: absolute; | |
top: 50px; | |
left: 100px; | |
padding: 20px; | |
width: 240px; | |
height: 80px; | |
animation: rainbow 3s infinite; | |
} |
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
<div>Hello!</div> |
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
{"view":"split","fontsize":"70","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment