【Canvas与钟表】淡紫色X纹表盘
【成图】
【代码】
<!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head> <title>淡紫色X纹表盘</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> </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.init=function(){ } // 更新 this.update=function(){ } // 画背景 this.paintBg=function(ctx){ ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);// 清屏 } // 画前景 this.paintFg=function(ctx){ // 底色 ctx.save(); ctx.fillStyle = "white";//"rgb(117,117,117)"; ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT); ctx.restore(); const R=180;// 基准尺寸 // 横向渐变宽外框 ctx.save(); var r=R*1.06; var gnt=ctx.createLinearGradient(-r,0,r,0); gnt.addColorStop(0,"rgb(80,45,25)"); gnt.addColorStop(0.4,"rgb(212,192,155)"); gnt.addColorStop(0.5,"rgb(242,234,221)"); gnt.addColorStop(0.6,"rgb(212,192,155)"); gnt.addColorStop(1,"rgb(80,45,25)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.arc(0,0,r,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); ctx.restore(); // 横向渐变窄外框 ctx.save(); var r=R*1.02; var gnt=ctx.createLinearGradient(0,-r,0,r);//(-r,0,r,0); gnt.addColorStop(0,"rgb(104,77,50)"); gnt.addColorStop(0.4,"rgb(169,145,117)"); gnt.addColorStop(0.5,"rgb(129,102,73)"); gnt.addColorStop(0.6,"rgb(169,145,117)"); gnt.addColorStop(1,"rgb(104,77,50)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.arc(0,0,r,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); ctx.restore(); // 表盘 ctx.save(); var r=R*1.00; ctx.fillStyle="black"; ctx.beginPath(); ctx.arc(0,0,r,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); ctx.restore(); // 刻度 r=R; var N=240; for(var i=0;i<N;i++){ var theta=Math.PI*2/N*i; var rad1=0; var rad2=0; if(i%5!=0){ rad1=r/20*19; rad2=r/20*18; }else{ rad1=r/20*19.8; rad2=r/20*18; } var pt=createPt(rad1*Math.cos(theta),rad1*Math.sin(theta)); var pt2=createPt(rad2*Math.cos(theta),rad2*Math.sin(theta)); ctx.strokeStyle="rgb(173,169,166)"; ctx.beginPath(); ctx.moveTo(pt.x,pt.y); ctx.lineTo(pt2.x,pt2.y); ctx.stroke(); } // backslash表盘 ctx.save(); var r=R*0.9; var gnt=ctx.createLinearGradient(-r,r,r,-r); gnt.addColorStop(0,"black"); gnt.addColorStop(0.4,"rgb(125,115,116)"); gnt.addColorStop(0.5,"rgb(155,147,144)"); gnt.addColorStop(0.6,"rgb(125,115,116)"); gnt.addColorStop(1,"black"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.arc(0,0,r,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); ctx.restore(); // slash蒙版 ctx.save(); r=R*0.9; var gnt=ctx.createLinearGradient(-r,-r,r,r); gnt.addColorStop(0,"rgba(0,0,0,0.35)"); gnt.addColorStop(0.4,"rgba(125,115,116,0.35)"); gnt.addColorStop(0.5,"rgba(155,147,144,0.35)"); gnt.addColorStop(0.6,"rgba(125,115,116,0.35)"); gnt.addColorStop(1,"rgba(0,0,0,0.35)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.arc(0,0,r,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); ctx.restore(); // 圆点刻度 ctx.save(); r=R*0.85; var N=60; for(var i=0;i<N;i++){ var theta=Math.PI*2/N*i; var pt=createPt(r*Math.cos(theta),r*Math.sin(theta)); if(i%5==0){ var bgColor=ctx.createRadialGradient(pt.x,pt.y,0,pt.x,pt.y,4); bgColor.addColorStop(0,"white"); bgColor.addColorStop(0.5,"rgb(212,192,155)"); bgColor.addColorStop(1,"black"); drawSolidCircle(ctx,pt.x,pt.y,4,bgColor); }else{ var bgColor=ctx.createRadialGradient(pt.x,pt.y,0,pt.x,pt.y,1); bgColor.addColorStop(0,"white"); bgColor.addColorStop(0.5,"rgb(212,192,155)"); bgColor.addColorStop(1,"lightgrey"); drawSolidCircle(ctx,pt.x,pt.y,1,bgColor); } } ctx.restore(); // 数字 ctx.save(); r=R*0.75; var hours=["Ⅲ","Ⅵ","Ⅸ","Ⅻ"]; var N=hours.length; for(var i=0;i<N;i++){ var theta=i*Math.PI*2/N; var pt=createPt(r*Math.cos(theta),r*Math.sin(theta)); ctx.font=r/8+"px Microsoft YaHei UI"; ctx.textAlign="center"; ctx.textBaseLine="Middle"; ctx.fillStyle="rgb(212,192,155)"; ctx.fillText(hours[i],pt.x,pt.y+r/20); } ctx.restore(); // 文字 var color="rgb(232,212,175)"; var start=createPt(0,R/3); var gap=24; var sz=R/10; //writeText(ctx,start.x,start.y,"Time is fleeting",sz+"px Ink Free",color); //writeText(ctx,start.x,start.y+gap,"往事只能回味",sz+"px 汉仪瘦金体繁",color); // 得到当前时间 var now=new Date(); var s=now.getSeconds(); var m=now.getMinutes(); var h=now.getHours()+m/60; // 画三根针 drawHourPointer(ctx,h,R*0.6); drawMinutePointer(ctx,m,R*0.7); drawSecondPointer(ctx,s,R*0.8); writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火制图","8px consolas","lightgrey");// 版权 } } // 画时针 function drawHourPointer(ctx,h,radius){ const R=radius; const W=R/8; ctx.save(); ctx.rotate(h*Math.PI/6-Math.PI/2); ctx.strokeStyle="grey"; var gnt=ctx.createLinearGradient(0,-W/2,0,0); gnt.addColorStop(0,"rgb(176,138,117)"); gnt.addColorStop(0.5,"rgb(240,226,119)"); gnt.addColorStop(1,"rgb(143,105,58)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.moveTo(0,0); ctx.quadraticCurveTo(R/3,-W/2,R,0); ctx.closePath(); ctx.fill(); ctx.stroke(); ctx.strokeStyle="lightgrey"; var gnt=ctx.createLinearGradient(0,W/2,0,0); gnt.addColorStop(0,"rgb(143,105,58)"); gnt.addColorStop(0.5,"rgb(240,226,119)"); gnt.addColorStop(1,"rgb(111,77,29)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.moveTo(0,0); ctx.quadraticCurveTo(R/3,W/2,R,0); ctx.closePath(); ctx.fill(); ctx.stroke(); ctx.restore(); } // 画分针 function drawMinutePointer(ctx,m,radius){ const R=radius; const W=R/12; ctx.save(); ctx.rotate(m*Math.PI/30-Math.PI/2); ctx.strokeStyle="grey"; var gnt=ctx.createLinearGradient(0,-W/2,0,0); gnt.addColorStop(0,"rgb(176,138,117)"); gnt.addColorStop(0.5,"rgb(240,226,119)"); gnt.addColorStop(1,"rgb(143,105,58)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.moveTo(0,0); ctx.quadraticCurveTo(R/3,-W/2,R,0); ctx.closePath(); ctx.fill(); ctx.stroke(); ctx.strokeStyle="lightgrey"; var gnt=ctx.createLinearGradient(0,W/2,0,0); gnt.addColorStop(0,"rgb(143,105,58)"); gnt.addColorStop(0.5,"rgb(240,226,119)"); gnt.addColorStop(1,"rgb(111,77,29)"); ctx.fillStyle=gnt; ctx.beginPath(); ctx.moveTo(0,0); ctx.quadraticCurveTo(R/3,W/2,R,0); ctx.closePath(); ctx.fill(); ctx.stroke(); ctx.restore(); } // 画秒针 function drawSecondPointer(ctx,s,radius){ const R=radius; const W=R/40; ctx.save(); ctx.rotate(s*Math.PI/30-Math.PI/2); // 中间白点 ctx.fillStyle="rgb(239,201,136)"; ctx.beginPath(); ctx.arc(0,0,1.5*W,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); // 红色表针 ctx.strokeStyle="rgb(239,201,136)"; ctx.lineWidth=2; ctx.beginPath(); ctx.moveTo(-R/8,0); ctx.lineTo(R,0); ctx.stroke(); // 红圈 ctx.fillStyle="rgb(239,201,136)"; ctx.beginPath(); ctx.arc(0,0,1.2*W,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); // 金点 ctx.fillStyle="white"; ctx.beginPath(); ctx.arc(0,0,0.8*W,0,Math.PI*2,false); ctx.closePath(); ctx.fill(); ctx.restore(); } /*---------------------------------------------------------- 函数:用于绘制实心圆,用途是标记点以辅助作图 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>
END
分类:
Canvas与钟表
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)
2015-01-07 【Canvas与技法】绘制水滴轮廓