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

【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=200;// 基准尺寸

        // 黑色横向渐变外框
        var r=R*1.05;
        var gnt=ctx.createLinearGradient(-r,0,r,0);
        gnt.addColorStop(0,"navy");
        gnt.addColorStop(0.35,"blue");
        gnt.addColorStop(0.5,"lightgrey");
        gnt.addColorStop(0.65,"blue");
        gnt.addColorStop(1,"navy");    
        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,"navy");
        gnt1.addColorStop(0.45,"blue");
        gnt1.addColorStop(0.5,"lightgrey");
        gnt1.addColorStop(0.55,"blue");
        gnt1.addColorStop(1,"navy");
        ctx.fillStyle=gnt1;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        ctx.fill();

        // 表盘
        r=R-5;
        ctx.fillStyle="black";
        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="gold";
            ctx.lineWidth=((i%5==0)?2:1.5);
            ctx.beginPath();
            ctx.moveTo(pt.x,pt.y);
            ctx.lineTo(pt2.x,pt2.y);
            ctx.stroke();            
        }

        // 小时数字
        // 数字
        r=R*0.75;
        var hours=["3","4","5","6","7","8","9","10","11","12","1","2"]; 
        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,R/30);
            ctx.restore();
        }

        // 得到当前时间
        var now=new Date();
        var s=now.getSeconds();
        var m=now.getMinutes();
        var h=now.getHours()+m/60;

        // 画三根针        
        drawHourPointer(ctx,h,R*0.5);
        drawMinutePointer(ctx,m,R*0.7);
        drawSecondPointer(ctx,s,R*0.8);

        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="white";
    ctx.beginPath();
    ctx.arc(0,0,1.5*W,0,Math.PI*2,false);
    ctx.closePath();
    ctx.fill();

    // 红色表针
    ctx.strokeStyle="red";
    ctx.lineWidth=2;
    ctx.beginPath();
    ctx.moveTo(-R/8,0);
    ctx.lineTo(R,0);
    ctx.stroke();

    // 红圈
    ctx.fillStyle="red";
    ctx.beginPath();
    ctx.arc(0,0,1.2*W,0,Math.PI*2,false);
    ctx.closePath();
    ctx.fill();

    // 金点
    ctx.fillStyle="gold";
    ctx.beginPath();
    ctx.arc(0,0,0.8*W,0,Math.PI*2,false);
    ctx.closePath();
    ctx.fill();

    ctx.restore();
}

// 画分针
function drawMinutePointer(ctx,m,radius){
    const R=radius;
    const W=R/20;

    ctx.save();
    ctx.rotate(m*Math.PI/30-Math.PI/2);

    ctx.strokeStyle="lime";
    ctx.lineWidth=2;
    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(4*W,0);
    ctx.arc(4.5*W,0,W/2,Math.PI,Math.PI/2*3,false);
    ctx.lineTo(4.5*W,-0.5*W);
    ctx.lineTo(R-0.5*W,-0.5*W);
    ctx.arc(R-0.5*W,0,W/2,-Math.PI/2,Math.PI/2,false);
    ctx.lineTo(R-0.5*W,0.5*W);
    ctx.lineTo(4.5*W,0.5*W);
    ctx.arc(4.5*W,0,W/2,Math.PI/2,Math.PI/2*3,false);
    ctx.stroke();

    ctx.restore();
}

// 画时针
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="aqua";
    ctx.lineWidth=2;
    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(2*W,0);
    ctx.arc(2.5*W,0,W/2,Math.PI,Math.PI/2*3,false);
    ctx.lineTo(2.5*W,-0.5*W);
    ctx.lineTo(R-0.5*W,-0.5*W);
    ctx.arc(R-0.5*W,0,W/2,-Math.PI/2,Math.PI/2,false);
    ctx.lineTo(R-0.5*W,0.5*W);
    ctx.lineTo(2.5*W,0.5*W);
    ctx.arc(2.5*W,0,W/2,Math.PI/2,Math.PI/2*3,false);
    ctx.stroke();

    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


http://www.kler.cn/news/304836.html

相关文章:

  • 前端-CDN的理解及CDN一些使用平台
  • Qt 实战(10)模型视图 | 10.3、模型数据索引
  • 【网络安全】漏洞挖掘:文件上传实现Webshell
  • Qt+FFmpeg开发视频播放器笔记(三):音视频流解析封装
  • 如何制作一个自己的外卖会员卡小程序?
  • 【AutoX.js】选择器 UiSelector - 查找包名
  • 基于Kubernetes部署Spark:spark on kubernetes
  • yaml配置文件(SpringBoot学习4)
  • Qt 实现自定义截图工具
  • 【Android】【Bug】Activity全屏(保留底部按钮)被打断变成非全屏了
  • 基于SpringBoot的扶贫助农管理系统
  • IDEA中集成Git及Github
  • nordic芯片 flash加密 防止被抄板
  • 安卓14剖析SystemUI的ShadeLogger/LogBuffer日志动态控制输出dumpsy机制
  • JSP经典设计模式流程分析:JSP+JavaBean设计模式+MVC设计模式
  • 串口接收不到数据之电阻虚焊bug分析思路
  • springboot和springcloud区别
  • 解锁定位服务:Flutter应用中的高德地图定位
  • Oracle(126)如何使用闪回表(Flashback Table)?
  • mac电脑打不开rar文件怎么办 rar文件怎么转换成zip并打开
  • 【主机入侵检测】Wazuh规则详解
  • 自定义EPICS在LabVIEW中的测试
  • [实践应用] 深度学习之损失函数
  • 远超想象的复杂
  • InternVL2- dockerfile环境变量持久化使用`ENV`而不是`RUN export`来设置环境变量,以确保环境变量在容器运行时仍然可用
  • python画图|3D参数化图形输出
  • MySQL 事务的 ACID 特性与应用
  • 分布式事务学习笔记(二)Seata架构、TC服务器部署、微服务集成Seata
  • Facebook的虚拟现实计划:未来社交的全新视角
  • 使用 LangChain 和 Neo4j 构建智能图数据库查询系统