97se亚洲综合在线,97成人碰碰久久人人超级碰oo,东京热人妻一区二区三区,狠狠色婷婷久久一区二区

使用html5和js畫個太極圖

開發(fā)技術(shù) 2015/5/15

<canvas id="mycanvas" width="600" height="400" style="border: 1px solid #ccc; background-color: #ccc;">你的瀏覽器不支持canvas</canvas>

<script>

   var canvas = document.getElementById('mycanvas');

   var ctx = canvas.getContext('2d');

   //左邊半個黑圓

   ctx.beginPath();

   ctx.fillStyle="#000";

   ctx.arc(200,200,150,0.5*Math.PI,1.5*Math.PI,false);

   ctx.fill();

   //右邊半個白圓

   ctx.beginPath();

   ctx.fillStyle="#fff";

   ctx.arc(200,200,150,1.5*Math.PI,2.5*Math.PI,false);

   ctx.fill();

   //圓心

   /*ctx.beginPath();

   ctx.strokeStyle="#000";

   ctx.arc(200,200,1,0,2*Math.PI,false);

   ctx.stroke();*/

   //上面半個圓

   ctx.beginPath();

   ctx.fillStyle="#fff";

   ctx.arc(200,125,75,0.5*Math.PI,1.5*Math.PI,false);

   ctx.fill();

   //上面半個圓中小黑圓

   ctx.beginPath();

   ctx.fillStyle="#000";

   ctx.arc(200,125,10,0,2*Math.PI,false);

   ctx.fill();

   //下面半個圓

   ctx.beginPath();

   ctx.fillStyle="#000";

   ctx.arc(200,275,75,1.5*Math.PI,2.5*Math.PI,false);

   ctx.fill();

   //下面半個圓中個小白圓

   ctx.beginPath();

   ctx.fillStyle="#fff";

   ctx.arc(200,275,10,0,2*Math.PI,false);

   ctx.fill();

</script>

中國· 上海

谷谷二維碼
添加微信咨詢

CopyRight?2009-2019 上海谷谷網(wǎng)絡(luò)科技有限公司 All Rights Reserved. 滬ICP備11022482號-8  

關(guān)于我們 | 聯(lián)系我們