用 canvas 制作奥运五环
<canvas id="xxb" width="500" height="500"></canvas>
<script type="text/javascript"> var bg = document.getElementById('xxb'); var ctx = bg.getContext('2d'); //第一个圆圈 ctx.beginPath(); ctx.lineWidth=10; //圆圈的边线的大小 ctx.strokeStyle='RGB(43,0,155)'; //圆圈的颜色 ctx.arc(60,60,50,0*Math.PI,2.25*Math.PI,false); // 圆圈的 水平位置 、 垂直位置 、 圆圈的半径、圆圈的弧度 , ctx.stroke(); //第二个圆圈 ctx.beginPath(); ctx.lineWidth=10; ctx.strokeStyle='RGB(35,24,22)'; ctx.arc(180,60,50,0*Math.PI,2*Math.PI,false); ctx.stroke(); //第三个圆圈 ctx.beginPath(); ctx.lineWidth=10; ctx.strokeStyle='RGB(248,3,0)'; ctx.arc(300,60,50,0*Math.PI,2*Math.PI,false); ctx.stroke(); //第四个圆圈 ctx.beginPath(); ctx.lineWidth=10; ctx.strokeStyle='RGB(223,252,22)'; ctx.arc(120,100,50,0*Math.PI,2*Math.PI,false); ctx.stroke(); //第五个圆圈 ctx.beginPath(); ctx.lineWidth=10; ctx.strokeStyle='RGB(37,254,75)'; ctx.arc(240,100,50,0*Math.PI,2*Math.PI,false); ctx.stroke(); </script>
相关推荐
大地飞鸿 2020-11-12
星星有所不知 2020-10-12
jinxiutong 2020-07-26
MIKUScallion 2020-07-05
songfens 2020-07-05
songfens 2020-06-11
songfens 2020-06-08
northwindx 2020-05-31
northwindx 2020-05-31
northwindx 2020-05-27
northwindx 2020-05-25
MIKUScallion 2020-05-25
jinxiutong 2020-05-10
xdyangxiaoromg 2020-05-10
大地飞鸿 2020-05-06
northwindx 2020-04-25