Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created May 8, 2012 04:45
Show Gist options
  • Select an option

  • Save LeaVerou/2632651 to your computer and use it in GitHub Desktop.

Select an option

Save LeaVerou/2632651 to your computer and use it in GitHub Desktop.
box-shadow: 10px 10px 10px -5px gray; applied in stages
/**
* 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;
}
<h1><code>box-shadow: 10px 15px 10px -5px gray;</code> applied in stages</h1>
{"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