Created
May 8, 2012 04:45
-
-
Save LeaVerou/2632651 to your computer and use it in GitHub Desktop.
box-shadow: 10px 10px 10px -5px gray; applied in stages
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
| /** | |
| * box-shadow: 10px 10px 10px -5px gray; applied in stages | |
| */ | |
| @keyframes box-shadow { | |
| from { box-shadow: 0 0 orange } | |
| 10% { box-shadow: 10px 0 orange } /* x offset */ | |
| 20% { box-shadow: 10px 15px orange } /* y offset */ | |
| 30% { box-shadow: 10px 15px 0 -5px orange } /* spread */ | |
| 40% { box-shadow: 10px 15px 0 -5px gray } /* color */ | |
| 60% { box-shadow: 10px 15px 10px -5px gray } /* blur */ | |
| } | |
| h1 { | |
| width: 12em; | |
| padding: 1em; | |
| background: orange; | |
| box-shadow: 10px 15px 10px -5px gray; | |
| animation: 10s box-shadow infinite linear; | |
| } | |
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
| <h1><code>box-shadow: 10px 15px 10px -5px gray;</code> applied in stages</h1> |
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-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment