<h2>jCanvas example: Connected lines</h2>
<canvas id="myCanvas" width="600" height="300">
<p>This is fallback content for users of assistive technologies or of browsers that don't have full support for the Canvas API.</p>
</canvas>
body {
text-align: center;
}
canvas {
margin: auto;
display: block;
}
// Store the canvas object into a variable
var $myCanvas = $('#myCanvas');
$myCanvas.drawLine({
strokeStyle: 'steelblue',
strokeWidth: 10,
rounded: true,
closed: true,
x1: 100,
y1: 28,
x2: 50,
y2: 200,
x3: 300,
y3: 200,
x4: 200,
y4: 109
});
This Pen doesn't use any external CSS resources.