one-custom-property-animation-half-opaque-ref.html (286B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id ="canvas" width="500" height="500"></canvas> 5 <script> 6 var canvas = document.getElementById('canvas'); 7 var context = canvas.getContext("2d"); 8 context.fillStyle = 'rgba(75, 125, 0, 0.8)'; 9 context.fillRect(0, 0, 500, 500); 10 </script> 11 </body> 12 </html>