Created
December 17, 2011 17:13
-
-
Save ynonp/1490783 to your computer and use it in GitHub Desktop.
Arcs example
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
/** | |
* Arcs example | |
*/ | |
html { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height:100%; | |
} | |
svg { | |
display: block; | |
width: 100px; | |
margin: 0 auto; | |
} |
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> --> | |
<svg> | |
<g transform='translate(0,60)'> | |
<path d='M0,0 A40,40 0 0,0 50,0 L100,100' stroke='white' stroke-width=5 /> | |
</g> | |
</svg> |
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
{"page":"html","view":"split"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment