【Canvas与雷达】简约绿色扫描雷达图标
【要点】
扫描扇形的颜色渐变主要依赖从扇形端点到垂点的线性渐变色。
【成图】
120*120的图标
各种大小图
【代码】
<!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head><title>绿色雷达图标 Draft1</title><style type="text/css">.centerlize{margin:0 auto;width:1200px;}</style></head><body οnlοad="init();"><div class="centerlize"><canvas id="myCanvas" width="12px" height="12px" 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){//sleep(100);window.requestAnimationFrame(animate); } }// 舞台类 function Stage(){this.theta=0;// 初始化this.init=function(){}// 更新this.update=function(){ this.theta+=0.02;}// 画背景this.paintBg=function(ctx){ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);// 清屏 }// 画前景this.paintFg=function(ctx){// 底色ctx.save();ctx.fillStyle = "white";ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);ctx.restore();const R=210;// 基准尺寸// 第1圈ctx.save();var r=R*1.00;drawSolidCircle(ctx,0,0,r,"rgb(38,40,78)");ctx.restore();// 第2圈ctx.save();var r=R*0.99;drawSolidCircle(ctx,0,0,r,"white");ctx.restore();// 第3圈ctx.save();var r=R*0.95;var gnt=ctx.createRadialGradient(0,0,0,0,0,r);// 辐射渐变gnt.addColorStop(0,"rgb(51,199,77)");gnt.addColorStop(0.6,"rgb(51,199,77)");gnt.addColorStop(1,"rgb(107,230,124)");drawSolidCircle(ctx,0,0,r,gnt);ctx.restore();// 第4圈ctx.save();var r=R*0.62;var gnt=ctx.createRadialGradient(0,0,0,0,0,r);// 辐射渐变gnt.addColorStop(0,"rgb(46,194,70)");gnt.addColorStop(0.6,"rgb(46,194,70)");gnt.addColorStop(1,"rgb(102,235,120)");drawSolidCircle(ctx,0,0,r,gnt);ctx.restore();// 第4圈ctx.save();var r=R*0.38;drawSolidCircle(ctx,0,0,r,"rgb(112,255,131)");ctx.restore();// 第5圈ctx.save();var r=R*0.04;drawSolidCircle(ctx,0,0,r,"rgb(22,212,105)");ctx.restore();// 扫描扇形ctx.save();const ANGLE=Math.PI/2;var r=R*1.00;var a=createPt(r*Math.cos(this.theta),r*Math.sin(this.theta));var b=createPt(r*Math.cos(this.theta+ANGLE),r*Math.sin(this.theta+ANGLE));var c=createPt(a.x*Math.cos(ANGLE),a.y*Math.cos(ANGLE));ctx.strokeStyle="rgb(22,212,105)";// 牵引棒ctx.beginPath();ctx.moveTo(0,0);ctx.lineTo(b.x,b.y);ctx.stroke();var gnt=ctx.createLinearGradient(b.x,b.y,c.x,c.y);// 线性渐变色gnt.addColorStop(0,"rgba(255,255,255,0.6)");gnt.addColorStop(0.5,"rgba(255,255,255,0.4)");gnt.addColorStop(1,"rgba(255,255,255,0.2)");ctx.fillStyle=gnt;ctx.beginPath();ctx.moveTo(0,0);ctx.lineTo(a.x,a.y);ctx.arc(0,0,r,this.theta,this.theta+ANGLE,false);ctx.closePath();ctx.fill();ctx.restore();// 三个模拟目标点ctx.save();var r=R*0.98;var l=r*0.55;var angle=Math.PI*0;var a=createPt(l*Math.cos(angle),l*Math.sin(angle));drawSolidCircle(ctx,a.x,a.y,r*0.04,"white");l=r*0.75;angle=Math.PI*0.8;var a=createPt(l*Math.cos(angle),l*Math.sin(angle));drawSolidCircle(ctx,a.x,a.y,r*0.04,"white");var l=r*0.65;var angle=Math.PI*1.4;var a=createPt(l*Math.cos(angle),l*Math.sin(angle));drawSolidCircle(ctx,a.x,a.y,r*0.04,"white");ctx.restore();writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火制图","8px consolas","lightgrey");// 版权} }/*---------------------------------------------------------- 函数:用于绘制实心圆,用途是标记点以辅助作图 ctx:绘图上下文 x:矩形中心横坐标 y:矩形中心纵坐标 r:圆半径 color:填充圆的颜色 ----------------------------------------------------------*/ function drawSolidCircle(ctx,x,y,r,color){ctx.fillStyle=color;ctx.beginPath();ctx.arc(x,y,r,0,Math.PI*2,false);ctx.closePath();ctx.fill(); }/*---------------------------------------------------------- 函数:创建一个二维坐标点 x:横坐标 y:纵坐标 Pt即Point ----------------------------------------------------------*/ function createPt(x,y){var retval={};retval.x=x;retval.y=y;return retval; }/*---------------------------------------------------------- 函数:延时若干毫秒 milliseconds:毫秒数 ----------------------------------------------------------*/ function sleep(milliSeconds) {const date = Date.now();let currDate = null;while (currDate - date < milliSeconds) {currDate = Date.now();} }/*---------------------------------------------------------- 函数:书写文字 ctx:绘图上下文 x:横坐标 y:纵坐标 text:文字 font:字体 color:颜色 ----------------------------------------------------------*/ function writeText(ctx,x,y,text,font,color){ctx.save();ctx.textBaseline="bottom";ctx.textAlign="center";ctx.font = font;ctx.fillStyle=color;ctx.fillText(text,x,y);ctx.restore(); }/*------------------------------------------------------------- 很多人一生都是这样度过的: 年幼时不天真,年轻时不勇敢,中年没有钱,老年没有智慧, 婚姻里没有爱情,社会中没尊严,浑浑噩噩耗尽了白开水般的人生。 --------------------------------------------------------------*/ //--> </script>