console
(function clock() {
var ctx = document.getElementById('canvas').getContext('2d');
var now = new Date(),
sec = now.getSeconds(),
min = now.getMinutes(),
hr = now.getHours();
hr = hr > 12 ? hr - 12 : hr;
ctx.save();
ctx.clearRect(0, 0, 400, 400);
ctx.translate(200, 200);
ctx.rotate(-Math.PI/2);
var lingrad = ctx.createLinearGradient(150, 0, -150, 0);
lingrad.addColorStop(0, '#242f37');
lingrad.addColorStop(1, '#48585c');
ctx.fillStyle = lingrad;
ctx.beginPath();
ctx.arc(0, 0, 150,- Math.PI / 2, Math.PI / 2, true);
ctx.fill();
ctx.save();
ctx.rotate(Math.PI/2);
ctx.beginPath();
ctx.fillStyle = '#58717e';
ctx.font = '32px Microsoft yahei';
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.fillText('3', 120, 15);
ctx.fillText('6', 15, 120);
ctx.fillText('9', -120, 15);
ctx.restore();
ctx.save();
ctx.rotate(sec * (Math.PI /30));
ctx.beginPath();
ctx.lineWidth = 4;
ctx.strokeStyle = '#fff';
ctx.moveTo(0, 0);
ctx.lineTo(141, 0);
ctx.stroke();
ctx.beginPath();
ctx.fillStyle = '#fff';
ctx.arc(0, 0, 15, 0, Math.PI * 2, true);
ctx.fill();
ctx.beginPath();
ctx.strokeStyle = '#cdd2d5';
ctx.lineWidth = 1;
ctx.arc(0, 0, 8, 0, Math.PI * 2, true);
ctx.stroke();
ctx.restore();
var startX, startY;
var startFunc = function(e) {
startX = e.changedTouches[0].pageX,
startY = e.changedTouches[0].pageY;
};
var moveFunc = function(e) {
var endX = e.changedTouches[0].pageX;
var endY = e.changedTouches[0].pageY;
var distanceX = endX - startX;
var distanceY = endY - startY;
if (Math.abs(distanceX) > Math.abs(distanceY) && distanceX > 0) {
console.log('往右滑动');
} else if (Math.abs(distanceX) > Math.abs(distanceY) && distanceX < 0) {
console.log('往左滑动');
} else if (Math.abs(distanceX) < Math.abs(distanceY) && distanceY < 0) {
console.log('往上滑动');
} else if (Math.abs(distanceX) < Math.abs(distanceY) && distanceY > 0) {
console.log('往下滑动');
} else {
console.log('点击未滑动');
}
};
canvas.addEventListener('touchmove', moveFunc, false);
canvas.addEventListener('touchstart', startFunc, false);
ctx.beginPath();
ctx.lineWidth = 7;
var lingrad2 = ctx.createLinearGradient(150, 0, -150, 0);
lingrad2.addColorStop(0, '#adb9c5');
lingrad2.addColorStop(1, '#e9eced');
ctx.strokeStyle = lingrad2;
ctx.arc(0,0,152,-Math.PI/2,Math.PI/2,true);
ctx.stroke();
ctx.restore();
window.requestAnimationFrame(clock);
})();
<canvas id="canvas" width="400" height="400"></canvas>
html, body {
width: 100%;
height: 100%;
margin: 0;
}
canvas {
border: 1px solid #eee;
position: relative;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}