Drawing a Line on Canvas - Javascript Canvas

Javascript examples for Canvas:Line

Description

Drawing a Line on Canvas

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Drawing a Line on Canvas</title> 
  <style type="text/css">
  canvas{/*from w  w  w . j  a v a 2  s .c  o  m*/
    border: 1px solid #000;
  }
</style> 
  <script type="text/javascript">
    window.onload = function(){
        var canvas = document.getElementById("myCanvas");
        var context = canvas.getContext("2d");
        context.moveTo(50, 150);
        context.lineTo(250, 50);
        context.stroke();
    };
</script> 
 </head> 
 <body> 
  <canvas id="myCanvas" width="300" height="200"></canvas>   
 </body>
</html>

Related Tutorials