Created
January 27, 2012 11:04
-
-
Save machal/1688311 to your computer and use it in GitHub Desktop.
Dabblet: CSS transitions demo
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
| /** | |
| * Dabblet: CSS transitions demo | |
| */ | |
| #example { | |
| transition: background .5s, top .5s 1s; | |
| position: absolute; | |
| top: 20px; | |
| padding: 20px; | |
| background: #999; | |
| width: 300px; | |
| color: #fff; | |
| } | |
| #example:hover { | |
| top: 200px; | |
| background: #333; | |
| } | |
| #example p { | |
| width: 300px | |
| } | |
| body { | |
| font: 2em sans-serif; | |
| } | |
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
| <!-- content to be placed inside <body>…</body> --> | |
| <div id="example"> | |
| <p>Demo box</p> | |
| </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","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment