HTML 5 canvas music symbols examples


Symbol and code
Original dashed bar

Original dashed bar
Canvas rendered dashed bar



      
Download file


Line 1         :  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
Line 2         :      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Line 3         :  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Line 4         :    <head> 
Line 5         :      <title>Mobilefish.com - Dashed bar HTML 5 canvas example</title>
Line 6         :  
Line 7         :      <!--
Line 8         :      Music symbol dashed bar v. 1.0
Line 9         :      Author: Robert Lie
Line 10       :      www.mobilefish.com
Line 11       :      
Line 12       :      This file is public domain. You can use it for any purpose without restriction.
Line 13       :      I do not guarantee that it is correct, so use it at your own risk. 
Line 14       :      If you use it for something interesting, I'd appreciate hearing about it. 
Line 15       :      If you find any bugs or make any improvements, I'd appreciate hearing about those too.
Line 16       :      It would also be nice if my name and URL were left in the comments. But none of that is required.
Line 17       :  
Line 18       :      Requires: File excanvas.compiled.js 
Line 19       :                HTML5 Canvas for Internet Explorer
Line 20       :                See: http://code.google.com/p/explorercanvas/
Line 21       :      -->
Line 22       :  
Line 23       :      <!--[if IE]>
Line 24       :      <script type="text/javascript" src="scripts/excanvas.compiled.js"></script>
Line 25       :      <![endif]-->
Line 26       :      <script type="text/javascript">
Line 27       :  
Line 28       :   
Line 29       :      function drawShape(){
Line 30       :          var canvas = document.getElementById('cssxCoordinates');
Line 31       :          if (canvas.getContext){
Line 32       :              var ctx = canvas.getContext('2d');
Line 33       :        
Line 34       :              var x = 0; 
Line 35       :              var y = 0;  
Line 36       :  
Line 37       :              drawBarDashed(ctx,x,y);                       
Line 38       :          } else {
Line 39       :              alert('You need Firefox 1.5+, Google Chrome 8.0+, Internet Explorer 8.0+ or Safari 4.0+ to see the example.');
Line 40       :          }
Line 41       :      }
Line 42       :  
Line 43       :      function drawBarDashed(ctx,x,y){    
Line 44       :          var x_corner = x;
Line 45       :          var y_corner = y;
Line 46       :  
Line 47       :          ctx.translate(x_corner,y_corner);
Line 48       :  
Line 49       :          ctx.fillRect(0,0,8,40);                                        
Line 50       :          ctx.fillRect(0,78,8,78);
Line 51       :          ctx.fillRect(0,191,8,78);
Line 52       :          ctx.fillRect(0,307,8,78);
Line 53       :          ctx.fillRect(0,418,8,42);
Line 54       :      } 
Line 55       :      </script>
Line 56       :    </head>
Line 57       :    <body onload="drawShape();">
Line 58       :      <h1>Dashed bar</h1>
Line 59       :      <canvas id="cssxCoordinates" width="18" height="470"></canvas> 
Line 60       :    </body>
Line 61       :  </html>