HTML5 Canvas 描畫旋轉45度佛教萬字

來源:互聯網
上載者:User

標籤:UI   起點   onload   html   tco   canvas   load   表示   旋轉   

效果如下:

代碼如下:

 

<!DOCTYPE html><html lang="utf-8"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><head>     <title>旋轉45度佛教萬字</title>    </head>     <body onload="draw()">        <canvas id="myCanvus" width="400px" height="400px" style="border:1px dashed black;">            出現文字表示你的瀏覽器不支援HTML5        </canvas>     </body></html><script type="text/javascript"><!--    function draw(){        var canvas=document.getElementById("myCanvus");        var context=canvas.getContext("2d");        context.fillStyle = "red";        context.fillRect(0, 0, 400, 400);        context.translate(200,305);        context.rotate(Math.PI/4);        context.fillRect(-200, -200, 250, 250);        context.fillStyle = "black";// 填充黑色        context.translate(-200,-200);        context.fillRect(0, 0, 50, 150);// 填充矩形,參數分別為橫座標,縱座標,寬高        context.fillRect(49, 100, 200, 50);        context.fillRect(200, 149, 50, 100);// 注意位置微調了,如果卡在零界點上會有背景的紅線殘留        context.fillRect(100, 0, 150, 50);        context.fillRect(100, 49, 50, 200);// 注意位置微調了,如果卡在臨界點上會有背景的紅線殘留        context.fillRect(0, 200, 101, 50);        context.strokeStyle = "yellow";// 描邊黃色        context.strokeRect(50, 0, 50, 100);// 描邊,參數分別為橫座標,縱座標,寬高        context.strokeRect(150, 50, 100, 50);        context.strokeRect(0, 150, 100, 50);        context.strokeRect(150, 150, 50, 100);        context.strokeRect(0, 0, 250, 250);       context.fillStyle = "red";// 用紅色矩形塊抹去多餘的黃邊       context.fillRect(51, -2, 48, 100);// 注意起點和寬度都微調了,如果卡在臨界點上會有細細的黃線殘留       context.fillRect(151, 51, 101, 48);       context.fillRect(151, 151, 48, 101);       context.fillRect(-2, 151, 100, 48);    }//--></script>

 

HTML5 Canvas 描畫旋轉45度佛教萬字

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.