【Canvas技法】使用ellipse函数绘制椭圆拟合蛇纹手镯图案
【关键点】
Html5/Canvas有一个ellipse函数可以绘制椭圆,注意此方法极度耗资源,勿过度使用。
【图示】
【代码】
<!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="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=500; const HEIGHT=500; // 舞台对象 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.fillStyle="rgb(60,40,31)"; ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT); // 不断旋转椭圆得到鸟巢 for(var i=0;i<360;i+=5){ var theta=Math.PI/180*i; ctx.save(); ctx.rotate(theta); ctx.ellipse(0, 0, 200, 100, 0, 0, 2*Math.PI); ctx.lineWidth=0.2; ctx.strokeStyle="rgb(184,151,118)"; ctx.stroke(); ctx.restore(); } } // 画前景 this.paintFg=function(ctx){ } } /*--------------------------------------------- 不奋苦而求速效,只落得少日浮夸,老来窘隘而已 --郑板桥 ----------------------------------------------*/ //--> </script>
END