网页计算器

效果

image-20210923193231968

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>时钟</title>
</head>
<canvas id="canvas"></canvas>

<script>
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
var radius = canvas.height / 2;

Init();

function Init()
{
window.addEventListener('resize', ResizeCanvas, false);
ResizeCanvas();
}

function ResizeCanvas()
{
var s = Math.min(window.innerWidth, window.innerHeight);
canvas.width = canvas.height = s;
radius = canvas.height / 2;
ctx.translate(radius, radius);

radius *= 0.8;
DrawClock();
}

setInterval(DrawClock, 1000);

function DrawClock()
{
DrawFace(ctx, radius);
DrawNumbers(ctx, radius);
DrawTime(ctx, radius);
DrawString(ctx, radius);
}

function DrawFace(ctx, radius)
{
var grad;
ctx.beginPath();
ctx.arc(0, 0, radius, 0, 2 * Math.PI);
ctx.fillStyle = 'white';
ctx.fill();

grad = ctx.createRadialGradient(0, 0, radius * 0.9, 0, 0, radius);
grad.addColorStop(0, '#333');
grad.addColorStop(0.5, 'white');
grad.addColorStop(1, '#333');

ctx.strokeStyle = grad;
ctx.lineWidth = radius * 0.1;
ctx.stroke();

ctx.beginPath();
ctx.arc(0, 0, radius * 0.1, 0, 2 * Math.PI);
ctx.fillStyle = '#333';
ctx.fill();
}

function DrawNumbers(ctx, radius)
{
ctx.font = radius * 0.2 + "px arial";
ctx.textBaseline = "middle";
ctx.textAlign = "center";
for (var num = 1; num <= 12; num++)
{
var ang = num * Math.PI / 6;
ctx.rotate(ang);
ctx.translate(0, -radius * 0.8);
ctx.rotate(-ang);
ctx.fillText(num.toString(), 0, 0);
ctx.rotate(ang);
ctx.translate(0, radius * 0.8);
ctx.rotate(-ang);
}
}

function DrawHand(ctx, pos, length, width)
{
ctx.beginPath();
ctx.lineWidth = width;
ctx.lineCap = "round";
ctx.moveTo(0, 0);
ctx.rotate(pos);
ctx.lineTo(0, -length);
ctx.stroke();
ctx.rotate(-pos);
}


function DrawTime(ctx, radius)
{
var date = new Date();
var hour = date.getHours();
var minute = date.getMinutes();
var second = date.getSeconds();

hour = hour % 12;
hour = (hour * Math.PI / 6) + (minute * Math.PI / (6 * 60)) + (second * Math.PI / (360 * 60));
DrawHand(ctx, hour, radius * 0.5, radius * 0.05);
minute = (minute * Math.PI / 30) + (second * Math.PI / (30 * 60));
DrawHand(ctx, minute, radius * 0.8, radius * 0.03);
second = (second * Math.PI / 30);
DrawHand(ctx, second, radius * 0.9, radius * 0.02);
}

function DrawString(ctx, radius)
{
ctx.translate(0, -radius * 0.25);
ctx.font = radius * 0.1 + "px arial";
ctx.textBaseline = "middle";
ctx.textAlign = "center";

var date = new Date();

var s = date.getFullYear().toString() + "-"
+ (date.getMonth() + 1).toString() + "-"
+ date.getDate().toString() + " "
+ "星期 " + date.getDay().toString() + " "
+ date.getHours().toString() + ":"
+ date.getMinutes().toString() + ":"
+ date.getSeconds().toString();
ctx.fillText(s, 0, 0);

ctx.translate(0, radius * 0.25);
}

</script>

</html>