Skip to content

Instantly share code, notes, and snippets.

@ZijunXu
Last active September 28, 2017 01:11
Show Gist options
  • Save ZijunXu/c037e8f5c523603f502da5ab44f2c8fa to your computer and use it in GitHub Desktop.
Save ZijunXu/c037e8f5c523603f502da5ab44f2c8fa to your computer and use it in GitHub Desktop.
create the image
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; }
</style>
</head>
<body>
<script>
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500)
svg.append("rect")
.attr("x", 140)
.attr("y", 450)
.attr("height", 3)
.attr("width", 600)
.attr("fill", "#000000")
svg.append("rect")
.attr("x", 140)
.attr("y", 30)
.attr("height", 420)
.attr("width", 3)
.attr("fill", "#000000")
svg.append("rect")
.attr("x", 240)
.attr("y", 50)
.attr("height", 400)
.attr("width", 70)
.attr("fill", "#3996CE")
svg.append("rect")
.attr("x", 400)
.attr("y", 150)
.attr("height", 300)
.attr("width", 70)
.attr("fill", "#3996CE")
svg.append("rect")
.attr("x", 560)
.attr("y", 250)
.attr("height", 200)
.attr("width", 70)
.attr("fill", "#3996CE")
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment