Created
February 27, 2015 08:20
-
-
Save am4dr/14012fc50146da90afea to your computer and use it in GitHub Desktop.
SVG <symbol>
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
| <!doctype html> | |
| <html lang="ja"> | |
| <head> | |
| <title>power!</title> | |
| </head> | |
| <body> | |
| <svg width="600" height="200"> | |
| <defs> | |
| <symbol id="rrr" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" | |
| width="100" height="100"> | |
| <rect width="100" height="100" fill="lightgray"/> | |
| <rect width="100" height="100" fill="darkgreen" rx="15" ry="15"/> | |
| <rect width="100" height="100" fill="darkred" rx="30" ry="30"/> | |
| <rect width="100" height="100" fill="darkblue" rx="60" ry="60"/> | |
| </symbol> | |
| <symbol id="bbb" viewBox="0 0 300 300" preserveAspectRatio="xMidYMid" | |
| width="300" height="300"> | |
| <use x="000" y="000" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="100" y="000" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="200" y="000" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="000" y="100" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="100" y="100" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="200" y="100" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="000" y="200" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="100" y="200" width="100" height="100" xlink:href="#rrr"/> | |
| <use x="200" y="200" width="100" height="100" xlink:href="#rrr"/> | |
| </symbol> | |
| <symbol id="ccc" viewBox="0 0 300 300" preserveAspectRatio="xMidYMid" | |
| width="300" height="300"> | |
| <use x="000" y="000" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="100" y="000" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="200" y="000" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="000" y="100" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="100" y="100" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="200" y="100" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="000" y="200" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="100" y="200" width="100" height="100" xlink:href="#bbb"/> | |
| <use x="200" y="200" width="100" height="100" xlink:href="#bbb"/> | |
| </symbol> | |
| </defs> | |
| <g transform="scale(2)"> | |
| <use x="000" xlink:href="#rrr" width="100" height="100"/> | |
| <use x="100" xlink:href="#bbb" width="100" height="100"/> | |
| <use x="200" xlink:href="#ccc" width="100" height="100"/> | |
| </g> | |
| </svg> | |
| </body> | |
| </html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment