【成图】
【代码】
<!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 onl oad="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>