Changes between Initial Version and Version 1 of CanvasTest


Ignore:
Timestamp:
Jul 12, 2008, 4:47:38 AM (16 years ago)
Author:
max
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • CanvasTest

    v1 v1  
     1
     2{{{
     3#!html
     4<canvas id="stockGraph" width="150" height="150">
     5  current stock price: $3.15 +0.15
     6</canvas>
     7    <script type="text/javascript">
     8      function draw(){
     9        var canvas = document.getElementById('tutorial');
     10        if (canvas.getContext){
     11          var ctx = canvas.getContext('2d');
     12        }
     13      }
     14    </script>
     15}}}