two-custom-property-animation-ref.html (333B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id ="canvas" width="100" height="100"></canvas> 5 <script> 6 var canvas = document.getElementById('canvas'); 7 var context = canvas.getContext("2d"); 8 context.fillStyle = 'blue'; 9 context.fillRect(0, 0, 100, 100); 10 context.fillStyle = '#987664'; 11 context.fillRect(0, 0, 50, 50); 12 </script> 13 </body> 14 </html>