Created
February 12, 2012 09:54
-
-
Save machal/1807587 to your computer and use it in GitHub Desktop.
Dabblet: SVG sandbox
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: SVG sandbox | |
| */ | |
| body { | |
| background: lightgrey; | |
| } | |
| /* Modern browsers */ | |
| .loading { | |
| border: 1px solid #666; | |
| width: 80px; | |
| height: 80px; | |
| background: url('http://www.vzhurudolu.cz/css3/src/loading.svg') center center no-repeat; | |
| background-size: 50px auto; | |
| background-position: -20px -20px; | |
| } | |
| .loading .alternate { | |
| display: none; | |
| } | |
| /* Fallback for browsers without SVG support (IE8- for example, detected by Modernizr) */ | |
| .no-svg .loading { | |
| background-image: none; | |
| } | |
| .no-svg .loading .alternate { | |
| display: inline; | |
| } | |
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
| <p class="loading"> | |
| <span class="alternate"> | |
| Loading… | |
| </span> | |
| </p> | |
| <!-- Using Modernizr for CSS animations detect (see CSS) --> | |
| <script src="http://www.modernizr.com/downloads/modernizr-latest.js"></script> |
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