js implements a simple 24-hour clock
This time I will bring you js to implement a simple 24-hour clock. What are the precautions to implement a simple 24-hour clock in js? The following is a practical case, let's take a look.
js codevar canvas = document.getElementById("clock"); var clock = canvas.getContext("2d"); function zhong() { clock.save(); //开始画外层圆 clock.translate(200, 200); clock.strokeStyle = 'black'; clock.lineWidth = 3; clock.beginPath(); clock.arc(0, 0, 195, 0, 2 * Math.PI); clock.stroke(); //时钟上的数字 var shuzi = [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2]; clock.font = "30px Arial"; clock.textAlign = "center"; clock.textBaseline = "middle"; shuzi.forEach(function(number, i) { var rad = 2 * Math.PI / 12 * i; var x = Math.cos(rad) * 180; var y = Math.sin(rad) * 180; clock.fillText(number, x, y); }); // 小圆点 for(j = 0; j < 60; j++) { var h = 2 * Math.PI / 60 * j; var m = Math.cos(h) * 180; var n = Math.sin(h) * 180; clock.fillStyle = 'black'; clock.beginPath(); if(j % 5 === 0) { continue; } clock.arc(m, n, 3, 0, 2 * Math.PI); clock.fill(); } } function drawHour(hour,min) { clock.save(); var rad = 2 * Math.PI / 12 * hour; var red = 2 *Math.PI/12/60*min; clock.rotate(rad+red); clock.lineWidth = 10; clock.lineCap = "round"; clock.beginPath(); clock.moveTo(0, 5); clock.lineTo(0, -100); clock.stroke(); clock.restore(); } function drawmin(min) { clock.save(); var rad = 2 * Math.PI / 60 * min; clock.rotate(rad); clock.lineWidth = 5; clock.lineCap = "round"; clock.beginPath(); clock.moveTo(0, 10); clock.lineTo(0, -150); clock.stroke(); clock.restore(); } function drawsec(sec) { clock.save(); var rad = 2 * Math.PI / 60 * sec; clock.rotate(rad); clock.lineWidth = 2; clock.lineCap = "round"; clock.strokeStyle = "red"; clock.beginPath(); clock.moveTo(0, 10); clock.lineTo(0, -180); clock.stroke(); clock.restore(); } function dian() { clock.fillStyle = "white"; clock.beginPath(); clock.arc(0, 0, 2, 0, 2 * Math.PI); clock.fill(); } function xuanzhuan() { clock.clearRect(0,0,400,400); zhong(); var now = new Date(); var hour = now.getHours(); var min = now.getMinutes(); var sec = now.getSeconds(); drawHour(hour,min); drawmin(min); drawsec(sec); dian(); clock.restore(); } xuanzhuan(); setInterval(xuanzhuan, 1000);
The above is the detailed content of js implements a simple 24-hour clock. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

Is the clock app missing from your phone? The date and time will still appear on your iPhone's status bar. However, without the Clock app, you won’t be able to use world clock, stopwatch, alarm clock, and many other features. Therefore, fixing missing clock app should be at the top of your to-do list. These solutions can help you resolve this issue. Fix 1 – Place the Clock App If you mistakenly removed the Clock app from your home screen, you can put the Clock app back in its place. Step 1 – Unlock your iPhone and start swiping to the left until you reach the App Library page. Step 2 – Next, search for “clock” in the search box. Step 3 – When you see “Clock” below in the search results, press and hold it and

An email signature is important to demonstrate legitimacy and professionalism and includes contact information and company logo. Outlook users often complain that signatures disappear after restarting, which can be frustrating for those looking to increase their company's visibility. In this article, we will explore different fixes to resolve this issue. Why do my Microsoft Outlook signatures keep disappearing? If this is your first time using Microsoft Outlook, make sure your version is not a trial version. Trial versions may cause signatures to disappear. Additionally, the version architecture should also match the version architecture of the operating system. If you find that your email signature disappears from time to time in Outlook Web App, it may be due to

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest
