【Canvas技法】绘制矩形、正方形、切角矩形和圆角矩形
【图例】
【代码】
<!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head> <title>绘制矩形正方形切角矩形圆角矩形</title> <style type="text/css"> .centerlize{ margin:0 auto; width:1200px; } </style> </head> <body onload="init();"> <div class="centerlize"> <canvas id="myCanvas" width="12px" height="12px" style="border:1px dotted black;"> 如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试. </canvas> <img id="myImg" src="125.png" style="display:none;"/> </div> </body> </html> <script type="text/javascript"> <!-- /***************************************************************** * 将全体代码(从<!DOCTYPE到script>)拷贝下来,粘贴到文本编辑器中, * 另存为.html文件,再用chrome浏览器打开,就能看到实现效果。 ******************************************************************/ // canvas的绘图环境 var ctx; // 高宽 const WIDTH=512; const HEIGHT=512; // 舞台对象 var stage; //------------------------------- // 初始化 //------------------------------- function init(){ // 获得canvas对象 var canvas=document.getElementById('myCanvas'); canvas.width=WIDTH; canvas.height=HEIGHT; // 初始化canvas的绘图环境 ctx=canvas.getContext('2d'); ctx.translate(WIDTH/2,HEIGHT/2);// 原点平移到画布中央 // 准备 stage=new Stage(); stage.init(); // 开幕 animate(); } // 播放动画 function animate(){ stage.update(); stage.paintBg(ctx); stage.paintFg(ctx); // 循环 if(true){ window.requestAnimationFrame(animate); } } // 舞台类 function Stage(){ // 初始化 this.init=function(){ } // 更新 this.update=function(){ } // 画背景 this.paintBg=function(ctx){ ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);// 清屏 // 正常矩形 drawRect(ctx,-128,-128,120,80); ctx.fillStyle="RGB(215,204,182)"; ctx.fill(); ctx.lineWidth=2; ctx.strokeStyle="RGB(104,20,20)"; ctx.stroke(); // 正方形 drawRect(ctx,-128,128,80,80); ctx.fillStyle="RGB(215,204,182)"; ctx.fill(); ctx.lineWidth=2; ctx.strokeStyle="RGB(104,20,20)"; ctx.stroke(); // 切角矩形 drawChamferedRect(ctx,128,-128,120,80,8); ctx.fillStyle="RGB(215,204,182)"; ctx.fill(); ctx.lineWidth=2; ctx.strokeStyle="RGB(104,20,20)"; ctx.stroke(); // 圆角矩形 drawRoundRect(ctx,128,128,120,80,8); ctx.fillStyle="RGB(215,204,182)"; ctx.fill(); ctx.lineWidth=2; ctx.strokeStyle="RGB(104,20,20)"; ctx.stroke(); // 版权 ctx.textBaseline="bottom"; ctx.textAlign="center"; ctx.font = "8px consolas"; ctx.fillStyle="black"; ctx.fillText("逆火原创",WIDTH/2-40,HEIGHT/2-10); } // 画前景 this.paintFg=function(ctx){ } } /*---------------------------------------------------------- 函数:用于绘制矩形 ctx:绘图上下文 x:矩形中心横坐标 y:矩形中心纵坐标 width:矩形宽 height:矩形高 ----------------------------------------------------------*/ function drawRect(ctx,x,y,width,height){ ctx.beginPath(); ctx.moveTo(x-width/2,y-height/2); ctx.lineTo(x+width/2,y-height/2); ctx.lineTo(x+width/2,y+height/2); ctx.lineTo(x-width/2,y+height/2); ctx.closePath(); } /*---------------------------------------------------------- 函数:用于绘制倒角矩形 ctx:绘图上下文 x:矩形中心横坐标 y:矩形中心纵坐标 width:矩形宽 height:矩形高 chamferLength:倒角长度 ----------------------------------------------------------*/ function drawChamferedRect(ctx,x,y,width,height,chamferLength){ ctx.beginPath(); ctx.moveTo(x-width/2+chamferLength,y-height/2); ctx.lineTo(x+width/2-chamferLength,y-height/2); ctx.lineTo(x+width/2,y-height/2+chamferLength); ctx.lineTo(x+width/2,y+height/2-chamferLength); ctx.lineTo(x+width/2-chamferLength,y+height/2); ctx.lineTo(x-width/2+chamferLength,y+height/2); ctx.lineTo(x-width/2,y+height/2-chamferLength); ctx.lineTo(x-width/2,y-height/2+chamferLength); ctx.closePath(); } /*---------------------------------------------------------- 函数:用于绘制圆角矩形 ctx:绘图上下文 x:矩形中心横坐标 y:矩形中心纵坐标 width:矩形宽 height:矩形高 radius:圆角半径 ----------------------------------------------------------*/ function drawRoundRect(ctx,x,y,width,height,radius){ ctx.beginPath(); ctx.moveTo(x-width/2+radius,y-height/2); ctx.lineTo(x+width/2-radius,y-height/2); ctx.arcTo(x+width/2,y-height/2,x+width/2,y-height/2+radius,radius); ctx.lineTo(x+width/2,y-height/2+radius); ctx.lineTo(x+width/2,y+height/2-radius); ctx.arcTo(x+width/2,y+height/2,x+width/2-radius,y+height/2,radius); ctx.lineTo(x+width/2-radius,y+height/2); ctx.lineTo(x-width/2+radius,y+height/2); ctx.arcTo(x-width/2,y+height/2,x-width/2,y+height/2-radius,radius); ctx.lineTo(x-width/2,y+height/2-radius); ctx.lineTo(x-width/2,y-height/2+radius); ctx.arcTo(x-width/2,y-height/2,x-width/2+radius,y-height/2,radius); ctx.closePath(); } /*-------------------------------------------------- 在印度,有些好岗位跟艾滋病一样,只能通过血液、母婴和 性三种渠道进行传播。 ---------------------------------------------------*/ //--> </script>
END