Skip to content

Instantly share code, notes, and snippets.

@larsvers
Created June 19, 2017 21:16
Show Gist options
  • Save larsvers/2899a0a0c44692130814c9d15ec5f8f6 to your computer and use it in GitHub Desktop.
Save larsvers/2899a0a0c44692130814c9d15ec5f8f6 to your computer and use it in GitHub Desktop.
ch1ex1
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>
<canvas id="main-canvas" width="600" height="400"></canvas>
<script>
var canvas = d3.select('#main-canvas').node();
var context = canvas.getContext('2d');
context.fillStyle = 'royalblue';
context.fillRect(50, 150, 200, 100);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment