Skip to content

Instantly share code, notes, and snippets.

@am4dr
Created February 27, 2015 08:20
Show Gist options
  • Select an option

  • Save am4dr/14012fc50146da90afea to your computer and use it in GitHub Desktop.

Select an option

Save am4dr/14012fc50146da90afea to your computer and use it in GitHub Desktop.
SVG <symbol>
<!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