【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="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 LENGTH=512;

// 舞台对象
var stage;

//-------------------------------
// 初始化
//-------------------------------
function init(){
    // 获得canvas对象
    var canvas=document.getElementById('myCanvas');  

    // 初始化canvas的绘图环境
    ctx=canvas.getContext('2d');  
    ctx.translate(LENGTH/2,LENGTH/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(-LENGTH/2,-LENGTH/2,LENGTH,LENGTH);// 清屏

        // 灰外圈
        ctx.strokeStyle="rgb(49,49,49)";
        ctx.lineWidth=2;
        ctx.beginPath();
        ctx.arc(0,0,250,0,2*Math.PI,true);
        ctx.closePath();
        ctx.stroke();

        // 黑凸起圈
        ctx.strokeStyle="rgb(12,12,12)";
        ctx.lineWidth=4;
        ctx.beginPath();
        ctx.arc(0,0,246,0,2*Math.PI,true);
        ctx.closePath();
        ctx.stroke();

        // 灰内圈
        ctx.strokeStyle="rgb(102,100,101)";
        ctx.lineWidth=2;
        ctx.beginPath();
        ctx.arc(0,0,242,0,2*Math.PI,true);
        ctx.closePath();
        ctx.stroke();

        // 灰底
        ctx.fillStyle="rgb(53,51,54)";
        ctx.beginPath();
        ctx.arc(0,0,242,0,2*Math.PI,true);
        ctx.closePath();
        ctx.fill();

        // 画刻度
        for(var i=0;i<=120;i++){
            var theta=Math.PI/80*i+Math.PI*3/4;
            var x=230*Math.cos(theta);
            var y=230*Math.sin(theta);

            if((i % 4)==0){
                // 画刻度
                var x1=240*Math.cos(theta);
                var y1=240*Math.sin(theta);
                
                if((i % 20)==0){
                    var x4=190*Math.cos(theta);
                    var y4=190*Math.sin(theta);

                    ctx.lineWidth=6;
                    ctx.strokeStyle="rgb(242,178,55)";
                    ctx.beginPath();
                    ctx.moveTo(x1,y1);
                    ctx.lineTo(x4,y4);
                    ctx.closePath();
                    ctx.stroke();

                     // 写数字
                    var x3=170*Math.cos(theta);
                    var y3=170*Math.sin(theta);
                    ctx.fillStyle="white";
                    ctx.font="30px Bahnschrift Condensed";
                    ctx.textAlign="center";
                    ctx.textBaseLine="Middle";
                    ctx.fillText(i,x3-4,y3+8);

                }else{
                    var x2=200*Math.cos(theta);
                    var y2=200*Math.sin(theta);

                    ctx.lineWidth=2;
                    ctx.strokeStyle="rgb(235,98,17)";
                    ctx.beginPath();
                    ctx.moveTo(x1,y1);
                    ctx.lineTo(x2,y2);
                    ctx.closePath();
                    ctx.stroke();
                }               
            }
        }
    }

    // 画前景
    this.paintFg=function(ctx){    
        
        // 灰底
        ctx.fillStyle="rgb(26,26,26)";
        ctx.beginPath();
        ctx.arc(0,0,20,0,2*Math.PI,true);
        ctx.closePath();
        ctx.fill();
        
        var angle=Math.PI*7/6+Math.random()*Math.PI/120;

        // 
        ctx.save();
        ctx.lineWidth=0.5; 
        ctx.fillStyle = "rgb(227,90,48)";
        ctx.beginPath();
        ctx.rotate(angle);
        ctx.moveTo(200,0);
        ctx.lineTo(-50,0);
        ctx.lineTo(-40,5);
        ctx.lineTo(190,2);
        ctx.closePath();
        ctx.fill();
        ctx.restore();

        ctx.save();
        ctx.lineWidth=0.5; 
        ctx.fillStyle = "rgb(243,126,25)";
        ctx.beginPath();
        ctx.rotate(angle);
        ctx.moveTo(200,0);
        ctx.lineTo(-50,0);
        ctx.lineTo(-40,-5);
        ctx.lineTo(190,-2);
        ctx.closePath();
        ctx.fill();
        ctx.restore();
        
        ctx.fillStyle="rgb(39,172,231)";
        ctx.font="30px Bahnschrift Condensed";
        ctx.textAlign="center";
        ctx.textBaseLine="Middle";
        ctx.fillText("33.5 km/h",0,150);
    }
}

/*-------------------------------------
《万家灯火》
他被炒了两周了,一直瞒着老婆在找工作。
一天回到家,他正想把简历藏到床底下,
却未曾想,妻子的乳腺癌诊断书也在。
她叫他吃饭,问老公今天工作一天挺累的吧?
他说就那样,那个...你的诊断结果咋样?
她笑着说放心,没事的良性.
两个人都忍住泪坐着,窗外正是万家灯火...
-------------------------------------*/
//-->
</script>

END

相关推荐
车载诊断技术9 小时前
什么是汽车中的SDK?
网络·架构·汽车·soa·电子电器架构
安冬的码畜日常20 小时前
【CSS in Depth 2 精译_044】第七章 响应式设计概述
前端·css·css3·html5·响应式设计·响应式
看到请催我学习1 天前
如何实现两个标签页之间的通信
javascript·css·typescript·node.js·html5
Q_w77421 天前
一个真实可用的登录界面!
javascript·mysql·php·html5·网站登录
海绵波波1071 天前
Qt操作主/从视图及XML——实例:汽车管理系统
xml·qt·汽车
惜.己1 天前
javaScript基础(8个案例+代码+效果图)
开发语言·前端·javascript·vscode·css3·html5
金灰1 天前
HTML5--裸体回顾
java·开发语言·前端·javascript·html·html5
软件开发技术深度爱好者1 天前
用HTML5+CSS+JavaScript庆祝国庆
javascript·css·html5
OCR_wintone4212 天前
中安未来 OCR—— 开启高效驾驶证识别新时代
人工智能·汽车·ocr
Neituijunsir2 天前
2024.09.22 校招 实习 内推 面经
大数据·人工智能·算法·面试·自动驾驶·汽车·求职招聘