本文主要是介绍【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 οnlοad="init();"><div class="centerlize"><canvas id="myCanvas" width="512px" height="512px" style="border:1px dotted black;">如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试.</canvas></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);// 清屏 //外缘ctx.beginPath();ctx.arc(0,0,240,0,Math.PI*2,true);ctx.lineWidth=0.2;ctx.strokeStyle="black";ctx.stroke();ctx.closePath();//--- 以下为纬线drawTuoYuan(ctx,0,196,264,46.5);ctx.lineWidth=0.5;ctx.strokeStyle="red";ctx.stroke();drawTuoYuan(ctx,0,166,340,60);ctx.lineWidth=0.5;ctx.strokeStyle="green";ctx.stroke();drawTuoYuan(ctx,0,136,390,68.8);ctx.lineWidth=0.5;ctx.strokeStyle="navy";ctx.stroke();drawTuoYuan(ctx,0,106,426,68.8);ctx.lineWidth=0.5;ctx.strokeStyle="purple";ctx.stroke();drawTuoYuan(ctx,0,76,454,80.1);ctx.lineWidth=0.5;ctx.strokeStyle="fuchsia";ctx.stroke();drawTuoYuan(ctx,0,36,474,83.6);ctx.lineWidth=0.5;ctx.strokeStyle="maroon";ctx.stroke();drawTuoYuan(ctx,0,0,480,84.7);ctx.lineWidth=0.5;ctx.strokeStyle="black";ctx.stroke();drawTuoYuan(ctx,0,-36,474,83.6);ctx.lineWidth=0.5;ctx.strokeStyle="maroon";ctx.stroke();drawTuoYuan(ctx,0,-76,454,80.1);ctx.lineWidth=0.5;ctx.strokeStyle="fuchsia";ctx.stroke();drawTuoYuan(ctx,0,-106,426,68.8);ctx.lineWidth=0.5;ctx.strokeStyle="purple";ctx.stroke();drawTuoYuan(ctx,0,-136,390,68.8);ctx.lineWidth=0.5;ctx.strokeStyle="navy";ctx.stroke();drawTuoYuan(ctx,0,-166,340,60);ctx.lineWidth=0.5;ctx.strokeStyle="green";ctx.stroke();drawTuoYuan(ctx,0,-196,264,46.5);ctx.lineWidth=0.5;ctx.strokeStyle="red";ctx.stroke();//--- 以下为经线drawTuoYuan(ctx,0,0,40,480);ctx.lineWidth=0.2;ctx.strokeStyle="black";ctx.stroke();drawTuoYuan(ctx,0,0,200,480);ctx.lineWidth=0.2;ctx.strokeStyle="black";ctx.stroke();drawTuoYuan(ctx,0,0,360,480);ctx.lineWidth=0.2;ctx.strokeStyle="black";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){} }/*------------------------------------------------------------------------函数:drawEllipse函数的套娃函数ctx:绘图上下文x:椭圆中心点横坐标y:椭圆中心点纵坐标width:椭圆宽height:椭圆高 ------------------------------------------------------------------------*/ function drawTuoYuan(ctx,x,y,width,height){drawEllipse(ctx,x-width/2,y-height/2,width,height); }/*------------------------------------------------------------------------函数:使用贝塞尔三次曲线拟近椭圆,该方法比原生的ellipse函数消耗小很多。ctx:绘图上下文x:椭圆左极点横坐标(注意不是中心点)y:椭圆左极点纵坐标(注意不是中心点)width:椭圆宽height:椭圆高注:该方法摘录自 张磊著《HTML5实验室-Canvas世界》,电子工业出版社出版 ------------------------------------------------------------------------*/ function drawEllipse(ctx,x,y,width,height){var k=0.55228475;var ox=(width/2)*k;var oy=(height/2)*k;var xe=x+width;var ye=y+height;var xm=x+width/2;var ym=y+height/2;ctx.beginPath();ctx.moveTo(x,ym);ctx.bezierCurveTo(x,ym-oy,xm-ox,y,xm,y);ctx.bezierCurveTo(xm+ox,y,xe,ym-oy,xe,ym);ctx.bezierCurveTo(xe,ym+oy,xm+ox,ye,xm,ye);ctx.bezierCurveTo(xm-ox,ye,x,ym+oy,x,ym);ctx.closePath(); }/*--------------------------------------------- 阿富汗的政权更迭, 本质上是一个壮大的本土宗教兼军阀组织, 对美帝国主义扶植的官僚买办集团的驱逐, 并不是一场解放性质的人民革命。 该组织总把前朝说得很黑暗,把世界说得很腐朽堕落, 然后把自己美化成救世主, 只要交税、上供、跟我走, 就能带你飞...... ----------------------------------------------*/ //--> </script>
END
这篇关于【Canvas技法】用椭圆绘制经纬线的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!