最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

為什么我畫的七巧板里面有兩塊的顏色無法顯示?(下面是我敲的代碼)

為什么我畫的七巧板里面有兩塊的顏色無法顯示?(下面是我敲的代碼)

簡若婷 2017-01-18 15:18:01
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>無標題文檔</title></head><body><canvas id="canvas" style="border:1px solid #aaa; display:block; margin:50px auto;">當前瀏覽器不支持canvas,請更換瀏覽器之后再試。</canvas><script> var tangram=[ {p:[{x:0,y:0},{x:800,y:0},{x:400,y:400}],color:"#blue"}, {p:[{x:0,y:0},{x:400,y:400},{x:0,y:800}],color:"#red"}, {p:[{x:800,y:0},{x:800,y:400},{x:600,y:600},{x:600,y:200}],color:"yellow"}, {p:[{x:600,y:200},{x:600,y:600},{x:400,y:400}],color:"pink"}, {p:[{x:400,y:400},{x:600,y:600},{x:400,y:800},{x:200,y:600}],color:"green"}, {p:[{x:200,y:600},{x:400,y:800},{x:0,y:800}],color:"white"}, {p:[{x:800,y:400},{x:800,y:800},{x:400,y:800}],color:"purple"} ] window:onload=function() { var canvas=document.getElementById("canvas"); canvas.width=800; canvas.height=800; var context=canvas.getContext("2d"); for(var i=0;i<tangram.length;i++) {draw(tangram[i],context)} } function draw(piece,cxt) { cxt.beginPath(); cxt.moveTo(piece.p[0].x,piece.p[0].y); for(var i=1;i<piece.p.length;i++) {cxt.lineTo(piece.p[i].x,piece.p[i].y);} cxt.closePath(); cxt.fillStyle=piece.color; cxt.fill(); } </script></body></html>
查看完整描述
  • 3 回答
  • 0 關(guān)注
  • 1652 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號