当前位置: 首页 > news >正文

【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="12px" height="12px" style="border:1px dotted black;">如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试.</canvas><img id="myImg" src="406.jpg" 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){//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.fillStyle = "white";ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);const R=100;// 基准尺寸// 黑色横向渐变外框var r=R*1.05;var gnt=ctx.createLinearGradient(-r,0,r,0);gnt.addColorStop(0,"black");gnt.addColorStop(0.35,"grey");gnt.addColorStop(0.5,"lightgrey");gnt.addColorStop(0.65,"grey");gnt.addColorStop(1,"black");    ctx.fillStyle=gnt;ctx.beginPath();ctx.arc(0,0,r,0,Math.PI*2,false);ctx.closePath();ctx.fill();// 黑色竖向渐变外框r=R;var gnt1=ctx.createLinearGradient(0,-r,0,r);gnt1.addColorStop(0,"black");gnt1.addColorStop(0.45,"grey");gnt1.addColorStop(0.5,"lightgrey");gnt1.addColorStop(0.55,"grey");gnt1.addColorStop(1,"black");ctx.fillStyle=gnt1;ctx.beginPath();ctx.arc(0,0,r,0,Math.PI*2,false);ctx.closePath();ctx.fill();// 表盘r=R-5;ctx.fillStyle="white";ctx.beginPath();ctx.arc(0,0,r,0,Math.PI*2,false);ctx.closePath();ctx.fill();// 刻度r=R-5;for(var i=0;i<60;i++){var theta=i*Math.PI/30;var rad1=r/20*19;var pt=createPt(rad1*Math.cos(theta),rad1*Math.sin(theta));var rad2=r/20*18;var pt2=createPt(rad2*Math.cos(theta),rad2*Math.sin(theta));            ctx.strokeStyle="grey";ctx.beginPath();ctx.moveTo(pt.x,pt.y);ctx.lineTo(pt2.x,pt2.y);ctx.stroke();            }// 小时背景var N=12;const PART=Math.PI/45;r=R;for(var i=0;i<N;i++){var theta=Math.PI*2/N*i;var r1=r*0.96;var a=createPt(r1*Math.cos(theta),r1*Math.sin(theta));var angle=theta+PART;var b=createPt(r1*Math.cos(angle),r1*Math.sin(angle));angle=theta-PART;var c=createPt(r1*Math.cos(angle),r1*Math.sin(angle));var r2=r*0.75;var o=createPt(r2*Math.cos(theta),r2*Math.sin(theta));angle=theta+PART;var e=createPt(r2*Math.cos(angle),r2*Math.sin(angle));angle=theta-PART;var d=createPt(r2*Math.cos(angle),r2*Math.sin(angle));ctx.lineWidth=1;ctx.strokeStyle="black";ctx.fillStyle=((i%2==0)?"rgb(255,185,24)":"rgb(71,132,195)");ctx.beginPath();ctx.moveTo(b.x,b.y);ctx.lineTo(e.x,e.y);var radius=r2*Math.sin(PART);ctx.arc(o.x,o.y,radius,theta+Math.PI/2,theta+Math.PI/2*3,false);ctx.lineTo(d.x,d.y);ctx.lineTo(c.x,c.y);ctx.arc(0,0,r1,theta-PART,theta+PART,false);ctx.lineTo(b.x,b.y);ctx.closePath();ctx.fill();}// 小时数字// 数字r=R*0.75;var hours=["Ⅲ","Ⅳ","Ⅴ","Ⅵ","Ⅶ","Ⅷ","Ⅸ","Ⅹ","Ⅺ","Ⅻ","Ⅰ","Ⅱ"]; for(var i=0;i<12;i++){var theta=i*Math.PI/6;var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));ctx.save();ctx.translate(pt.x,pt.y);ctx.rotate(theta+Math.PI/2);ctx.font=R/12.5+"px Microsoft YaHei UI";ctx.textAlign="center";ctx.textBaseLine="Middle";ctx.fillStyle="white";ctx.fillText(hours[i],0,0);ctx.restore();}// 得到当前时间var now=new Date();var s=now.getSeconds();var m=now.getMinutes();var h=now.getHours()+m/60;// 画三根针        drawMinutePointer(ctx,m,R*0.40);drawSecondPointer(ctx,s,R*0.60);drawHourPointer(ctx,h,R*0.05);writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火制图","8px consolas","lightgrey");// 版权}
}// 画秒针
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(71,132,195)";ctx.beginPath();ctx.lineTo(0,W);ctx.lineTo(R,W);ctx.arc(R,0,W,Math.PI/2,-Math.PI/2,true);ctx.lineTo(R,-W);ctx.lineTo(-R/3,-W);ctx.lineTo(-R/3,W);ctx.closePath();    ctx.fill();// 圆球配重ctx.beginPath();ctx.arc(-R/3,0,3*W,0,Math.PI*2,false);ctx.closePath();ctx.fill();ctx.restore();
}// 画分针
function drawMinutePointer(ctx,m,radius){const R=radius;const W=R/10;ctx.save();ctx.rotate(m*Math.PI/30-Math.PI/2);// 短杆ctx.fillStyle="rgb(255,185,24)";ctx.beginPath();ctx.lineTo(0,W);ctx.lineTo(R,W);ctx.arc(R,0,W,Math.PI/2,-Math.PI/2,true);ctx.lineTo(R,-W);ctx.lineTo(0,-W);ctx.closePath();    ctx.fill();ctx.restore();
}// 画时针
function drawHourPointer(ctx,h,radius){const R=radius;ctx.save();ctx.rotate(h*Math.PI/6-Math.PI/2);ctx.fillStyle="black";ctx.beginPath();ctx.arc(0,0,1.2*R,0,Math.PI*2,false);ctx.closePath();    ctx.fill();ctx.fillStyle="rgb(71,132,195)";ctx.beginPath();ctx.arc(R-2,0,0.2*R,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();
}/*-------------------------------------------------------------
You must be the change you wish to see in the end!
--------------------------------------------------------------*/
//-->
</script>

END

相关文章:

  • 北京网站建设多少钱?
  • 辽宁网页制作哪家好_网站建设
  • 高端品牌网站建设_汉中网站制作
  • 免费线上研讨会 | Ansys Zemax 设计医疗内窥镜
  • 【C#】命名规范
  • SAP 工厂间的库存转移简介
  • 电脑安装OpenWRT系统
  • 计算机网络第五章--传输层
  • 带你0到1之QT编程:十、一举击破开发中常用的Button按钮组
  • Redis 缓存淘汰算法策略详解
  • python制作石头剪刀布
  • 气压测试实验(用IIC)
  • 【题解】CF1993D
  • 喧嚣漫天之际,重新审视以太坊的定位与路线图
  • 力扣移除元素(力扣题26)(插空找空位java)
  • 在虚拟机安装mysql数据库
  • 测试工程师学历路径:从功能测试到测试开发
  • selenium元素定位:元素点击交互异常解决方法
  • ES6系列(二)变量的解构赋值
  • hadoop集群管理系统搭建规划说明
  • Python中eval与exec的使用及区别
  • React中的“虫洞”——Context
  • scrapy学习之路4(itemloder的使用)
  • vue总结
  • 闭包--闭包作用之保存(一)
  • 成为一名优秀的Developer的书单
  • 初探 Vue 生命周期和钩子函数
  • 对象引论
  • 翻译:Hystrix - How To Use
  • 飞驰在Mesos的涡轮引擎上
  • 浮现式设计
  • 解析 Webpack中import、require、按需加载的执行过程
  • 前端_面试
  • 如何正确配置 Ubuntu 14.04 服务器?
  • 使用SAX解析XML
  • 使用Tinker来调试Laravel应用程序的数据以及使用Tinker一些总结
  • 数据科学 第 3 章 11 字符串处理
  • 学习使用ExpressJS 4.0中的新Router
  • 智能合约Solidity教程-事件和日志(一)
  • RDS-Mysql 物理备份恢复到本地数据库上
  • Semaphore
  • ​直流电和交流电有什么区别为什么这个时候又要变成直流电呢?交流转换到直流(整流器)直流变交流(逆变器)​
  • #QT(一种朴素的计算器实现方法)
  • #VERDI# 关于如何查看FSM状态机的方法
  • (13)DroneCAN 适配器节点(一)
  • (Java入门)抽象类,接口,内部类
  • (vue)el-cascader级联选择器按勾选的顺序传值,摆脱层级约束
  • (ZT)出版业改革:该死的死,该生的生
  • (二开)Flink 修改源码拓展 SQL 语法
  • (二刷)代码随想录第16天|104.二叉树的最大深度 559.n叉树的最大深度● 111.二叉树的最小深度● 222.完全二叉树的节点个数
  • (论文阅读23/100)Hierarchical Convolutional Features for Visual Tracking
  • (免费分享)基于springboot,vue疗养中心管理系统
  • (一)spring cloud微服务分布式云架构 - Spring Cloud简介
  • *算法训练(leetcode)第四十七天 | 并查集理论基础、107. 寻找存在的路径
  • .\OBJ\test1.axf: Error: L6230W: Ignoring --entry command. Cannot find argumen 'Reset_Handler'
  • .class文件转换.java_从一个class文件深入理解Java字节码结构
  • .gitignore文件使用
  • .NET Core 2.1路线图