Skip to content

Instantly share code, notes, and snippets.

@jonsadka
Last active March 10, 2017 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonsadka/0c69fea6173881514eea55814d4d72ef to your computer and use it in GitHub Desktop.
Save jonsadka/0c69fea6173881514eea55814d4d72ef to your computer and use it in GitHub Desktop.
Hexagram (No Inner Lines)
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
.parent-container {
position: relative;
}
.pattern-container {
position: absolute;
width: 100%;
height: 500px;
}
.pattern {
fill: none;
stroke: #182F79;
}
</style>
</head>
<body>
<div class="parent-container">
<div class="pattern-container">
<svg width="100%" height="100%">
<defs>
<pattern id="Pattern" x="0" y="0" width="30" height="40" patternUnits="userSpaceOnUse">
<path class="pattern" d="M0 10,
10 10,
15 0,
20 10,
30 10,
25 20,
30 30,
20 30,
15 40,
10 30,
0 30,
5 20Z" />
</pattern>
</defs>
<rect fill="url(#Pattern)" width="100%" height="100%"/>
</svg>
</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment