<title>W3Cschool教程(w3cschool.cn)</title>
border:1px solid #d3d3d3;
gco.push("destination-atop");
gco.push("destination-in");
gco.push("destination-out");
gco.push("destination-over");
for (n=0;n<gco.length;n++){
document.write("<div id='p_" + n + "' style='float:left;'>" + gco[n] + ":<br>");
var c=document.createElement("canvas");
document.getElementById("p_" + n).appendChild(c);
var ctx=c.getContext("2d");
ctx.fillRect(10,10,50,50);
ctx.globalCompositeOperation=gco[n];
ctx.arc(50,50,30,0,2*Math.PI);
document.write("</div>");