Built with blockbuilder.org
Created
May 4, 2016 19:16
-
-
Save mcgovemc/5b5f20e383c5598de1fbf08e233b6d59 to your computer and use it in GitHub Desktop.
flag of sweden again
This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script> | |
<style> | |
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
svg { width:100%; height: 100% } | |
</style> | |
</head> | |
<body> | |
<script> | |
// Feel free to change or delete any of the code you see! | |
var svg = d3.select("body").append("svg") | |
svg.append("rect") | |
.attr({x: 100, y: 10, width: 50, height: 40}) | |
.style({ fill: "#1c30b4"}) | |
svg.append("rect") | |
.attr({x: 170, y: 10, width: 90, height: 40}) | |
.style({ fill: "#1c30b4"}) | |
svg.append("rect") | |
.attr({x: 100, y: 70, width: 50, height: 40}) | |
.style({ fill: "#1c30b4"}) | |
svg.append("rect") | |
.attr({x: 170, y: 70, width: 90, height: 40}) | |
.style({ fill: "#1c30b4"}) | |
svg.append("rect") | |
.attr({x: 100, y: 50, width: 160, height: 20}) | |
.style({ fill: "#e4df52"}) | |
svg.append("rect") | |
.attr({x: 150, y: 10, width: 20, height: 100}) | |
.style({ fill: "#e4e05c"}) | |
console.log("you are now rocking with d3", d3); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment