html5canvas绘制时钟,HTML5 Canvas 时钟

这篇博客展示了如何使用HTML5和JavaScript来创建一个实时更新的时钟。通过JavaScript获取当前时间,并在HTML画布上绘制时钟的小时、分钟和秒针,实现了动态效果。代码中详细解释了每个部分的功能,包括绘制数字、小时、分钟和秒针的逻辑。
摘要由CSDN通过智能技术生成

1.[图片] QQ截图20120712130049.png

31e96c5e458cebf5e31dd3c4087cd471.gif

41394e350a36b559dc5145692d958e27.png

​2. [代码][HTML]代码

HTML5 时钟

.clocks {

height: 500px;

margin: 25px auto;

position: relative;

500px;

}

HTML5 时钟

3. [代码][JavaScript]代码

// inner variables

var canvas, ctx;

var clockRadius = 250;

var clockImage;

// draw functions :

function clear() { // clear canvas function

ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);

}

function drawScene() { // main drawScene function

clear(); // clear canvas

// get current time

var date = new Date();

var hours = date.getHours();

var minutes = date.getMinutes();

var seconds = date.getSeconds();

hours = hours > 12 ? hours - 12 : hours;

var hour = hours + minutes / 60;

var minute = minutes + seconds / 60;

// save current context

ctx.save();

// draw clock image (as background)

ctx.drawImage(clockImage, 0, 0, 500, 500);

http://www.enterdesk.com/special/shouhui/​

ctx.translate(canvas.width / 2, canvas.height / 2);

ctx.beginPath();手绘图片

// draw numbers

ctx.font = '36px Arial';

ctx.fillStyle = '#000';

ctx.textAlign = 'center';

ctx.textBaseline = 'middle';

for (var n = 1; n <= 12; n++) {

var theta = (n - 3) * (Math.PI * 2) / 12;

var x = clockRadius * 0.7 * Math.cos(theta);

var y = clockRadius * 0.7 * Math.sin(theta);

ctx.fillText(n, x, y);

}

// draw hour

ctx.save();

var theta = (hour - 3) * 2 * Math.PI / 12;

ctx.rotate(theta);

ctx.beginPath();

ctx.moveTo(-15, -5);

ctx.lineTo(-15, 5);

ctx.lineTo(clockRadius * 0.5, 1);

ctx.lineTo(clockRadius * 0.5, -1);

ctx.fill();

ctx.restore();

// draw minute

ctx.save();

var theta = (minute - 15) * 2 * Math.PI / 60;

ctx.rotate(theta);

ctx.beginPath();

ctx.moveTo(-15, -4);

ctx.lineTo(-15, 4);

ctx.lineTo(clockRadius * 0.8, 1);

ctx.lineTo(clockRadius * 0.8, -1);

ctx.fill();

ctx.restore();

// draw second

ctx.save();

var theta = (seconds - 15) * 2 * Math.PI / 60;

ctx.rotate(theta);

ctx.beginPath();

ctx.moveTo(-15, -3);

ctx.lineTo(-15, 3);

ctx.lineTo(clockRadius * 0.9, 1);

ctx.lineTo(clockRadius * 0.9, -1);

ctx.fillStyle = '#0f0';

ctx.fill();

ctx.restore();

ctx.restore();

}

// initialization

$(function(){

canvas = document.getElementById('canvas');

ctx = canvas.getContext('2d');

// var width = canvas.width;

// var height = canvas.height;

clockImage = new Image();

clockImage.src = 'http://static.oschina.net/uploads/space/2012/0712/125855_nnla_89964.png';

setInterval(drawScene, 1000); // loop drawScene

});

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值