html中globalAlpha示例

来源:互联网 发布:适合学生党的淘宝店铺 编辑:程序博客网 时间:2024/06/05 20:27
<!DOCTYPE html><html><head><meta charset="utf-8"/><title>globalAlpha</title><script>function draw(id){var context=document.getElementById('canvas').getContext('2d');context.fillStyle='#fd0;'context.fillRect(0,0,75,75);context.fillStyle = '#6c0';context.fillRect(75,0,75,75);context.fillStyle='#09f';context.fillRect(0,75,75,75);context.fillStyle='#f30';context.fillRect(75,75,75,75);context.fillStyle='#fff';context.globalAlpha=0.3;for(var i=0;i<7;i++){context.beginPath();context.arc(75,75,10+10*i,0,Math.PI*2,true);context.fill();}}</script></head><body onload="draw('canvas');"><h1>globalAlpha</h1><canvas id="canvas" width="400" height="300"/></body></html>