I am learning canvas recently, and then I made an animated clock based on the example on MDN (why build a wheel, because it is ugly...)
This is an example on MDN, how should I say, it is more retro.
First, find a picture of a clock, which is the one below.
——from the dribbble website of bigger than bigger, image source (deleted)
Then start using canvas to realize this stylish clock. Insert the canvas tag in the html code
<canvas id="canvas" width="400" height="400"></canvas>
Create the canvas in the js file (assuming we are using modern browsers).
function clock() { var ctx = document.getElementById('canvas').getContext('2d'); }
Let’s draw the clock face first. We see that this picture has light and shadow effects. It is too difficult to draw the same. So I used color gradients to make the clock look a little more three-dimensional. Use createLinearGradient in canvas to create a new gradient, color it with addColorStop, and finally assign the color to strokeStyle. For details, see Using Styles and Colors by MDN
//绘制表盘底色 ctx.translate(200, 200); //将坐标原点移到画布中心 ctx.rotate(-Math.PI/2); //将坐标轴逆时针旋转90度,x轴正方向对准12点方向 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, 0, Math.PI * 2, true); ctx.fill();
The key point is that the positive direction of the x-axis of the canvas is the 3 o'clock direction of the clock. For convenience, we rotate it 90 degrees counterclockwise so that it points to 12 o'clock. direction.
To draw scales, rotate (Transformations by MDN) is used. There are 12 hour scales. The angle between two adjacent scales and the center of the circle is Math.PI/6. Here it is expressed in radians, which is 30 Spend. Then we use a for loop to draw the hour scale.
for (var i = 0; i < 12; i++) { ctx.beginPath(); ctx.strokeStyle = '#fff'; ctx.lineWidth = 3; ctx.rotate(Math.PI / 6); ctx.moveTo(140, 0); ctx.lineTo(120, 0); ctx.stroke(); }
Similarly, the minute scale is the same.
ctx.beginPath(); for (i = 0; i < 60; i++) { if (i % 5 !== 0) { //去掉与小时刻度重叠的部分 ctx.beginPath(); ctx.strokeStyle = '#536b7a'; ctx.lineWidth = 2; ctx.moveTo(140, 0); ctx.lineTo(130, 0); ctx.stroke(); } ctx.rotate(Math.PI / 30); }
The dial is roughly drawn and the scales are drawn. The next step is to draw the pointer and make it point to the correct time, right? Isn't it just drawing a straight line? The key is what is the angle at which the pointer rotates? In fact, it is relatively simple. First get the current time and convert the hour to 12-hour format.
var now = new Date(), sec = now.getSeconds(), min = now.getMinutes(), hr = now.getHours(); hr = hr > 12 ? hr - 12 : hr;
Then, the position of the hour hand is (the angle rotated relative to the positive direction of the What we get is the requestAnimationFrame method, which is used to redraw the page to obtain a coherent frame-by-frame animation to achieve the best animation effect.
ctx.rotate(hr * (Math.PI / 6) + min * (Math.PI / 360) + sec * (Math.PI / 21600));
This callback is our clock() function that draws the clock. It should be noted that the canvas needs to be cleared after each execution of requestAnimationFrame, otherwise overlapping and interlacing will occur. We place it at the beginning of the clock function.
ctx.rotate(min * (Math.PI / 30) + sec * (Math.PI/1800)); //分针ctx.rotate(sec * (Math.PI /30)); //秒针
At this point, the animated clock is OK. The rendering is as follows:
Demo address http://codepen.io/lifeng1893/pen/ALPamR
Vue和Canvas:如何实现手写签名和手势识别功能引言:手写签名和手势识别功能在现代应用程序中越来越常见,它们可以为用户提供更加直观和自然的交互方式。Vue.js作为一款流行的前端框架,搭配Canvas元素可以实现这两个功能。本文将介绍如何使用Vue.js和Canvas元素来实现手写签名和手势识别功能,并给出相应的代码示例。一、手写签名功能实现要实现手写签

H5是指HTML5,是HTML的最新版本,H5是一个功能强大的标记语言,为开发者提供了更多的选择和创造空间,它的出现推动了Web技术的发展,使得网页的交互和效果更加出色,随着H5技术的逐渐成熟和普及,相信它将会在互联网的世界中发挥越来越重要的作用。

canvas的优势有强大的绘图功能、高性能、跨平台兼容性、支持多种图形格式、可以与其他Web技术集成、可以实现动态效果和可以实现复杂的图像处理。详细介绍:1、Canvas提供了丰富的绘图功能,可以绘制各种形状、线条、文本、图像等;2、Canvas在浏览器中直接操作像素,因此具有很高的性能;3、Canvas是基于HTML5标准的一部分,可以在各种现代浏览器上运行等等。

如何利用Vue和Canvas创建逼真的天气动态背景引言:在现代网页设计中,动态背景效果是吸引用户眼球的重要元素之一。本文将介绍如何利用Vue和Canvas技术来创建一个逼真的天气动态背景效果。通过代码示例,你将学习如何编写Vue组件和利用Canvas绘制不同天气场景,从而实现一个独特而吸引人的背景效果。步骤一:创建Vue项目首先,我们需要创建一个Vue项目。

在H5中使用position属性可以通过CSS来控制元素的定位方式:1、相对定位relative,语法为“style="position: relative;”;2、绝对定位absolute,语法为“style="position: absolute;”;3、固定定位fixed,语法为“style="position: fixed;”等等。

Vue和Canvas:如何实现图片的马赛克效果引言:随着Web技术的不断发展,越来越多的人开始使用Vue框架来构建交互式的前端应用。而在前端开发中,常常需要为用户提供图片处理的功能。本文将介绍如何利用Vue和Canvas实现图片的马赛克效果,为用户带来更好的视觉体验。一、马赛克效果概述马赛克效果是一种将图像的细节部分进行像素化处理,使得整个图像变得模糊和抽象

Vue和Canvas:如何实现视频播放器的定制化界面引言:在现代互联网时代,视频已经成为人们生活中必不可少的一部分。为了提供良好的用户体验,许多网站和应用程序都提供了自定义的视频播放器界面。本文将介绍如何使用Vue和Canvas技术实现一个定制化的视频播放器界面。一、前期准备在开始之前,您需要确保您已经安装了Vue和Canvas,并且熟悉这两种技术的基本用法


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
