Hi everyone! my name is Kendall Magnan. I am studying Criminology. My goal is to go into mediation after graduation. Outside of school I ride horses. I have two that I compete on. My favorite color is pink. From this class I hope to learn new things and gain a new skill! :)
Tuesday, September 11, 2012
<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("mycanvas");
var context = canvas.getContext("2d");
///////////////////////// start below this line
//Heart
context.beginPath();
context.moveTo(400,200);
context.quadraticCurveTo(600,50,400,500);
context.lineWidth = 10;
context.lineCap = 'round';
// line color
context.strokeStyle = 'rgb(330,0,300)';
context.fillStlye = 'rgb(330,0,300)';
context.fill();
context.stroke();
context.beginPath();
context.moveTo(400,200);
context.quadraticCurveTo(200,50,400,500);
cpntext.lineWidth = 10;
context.fillStyle = 'rgb(330,0,300);
context.fill();
context.stroke();
/////////////////////////////// end below this line
};
</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment