利用用JS實(shí)現(xiàn)一個(gè)實(shí)時(shí)小鬧鐘
結(jié)構(gòu)設(shè)計(jì)
我們先來觀察一下這個(gè)小鬧鐘
我們先將它整體命名為clock
,這個(gè)鬧鐘可以分為兩個(gè)部分,一個(gè)外表盤,一個(gè)內(nèi)表盤,我們將它們命名為outer-clock-face
和inner-clock-face
。
接下來我們先來觀察外表盤,發(fā)現(xiàn)有刻度,我們用marking marking-one
、marking marking-two
、marking marking-three
、marking marking-four
四個(gè)容器將它們表示出來。
接下來我們來看內(nèi)表盤,發(fā)現(xiàn)里面有時(shí)針、秒針、分針這三根針,我們用<div class="hand hour-hand">
,<div class="hand min-hand">
,和<div class="hand second-hand">
,來代表它們,最后使用JS使它們呈現(xiàn)動(dòng)態(tài)的效果。
接下來我們來看html部分的代碼
html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="./style.css" rel="external nofollow" > </head> <body> <div class="clock"> <div class="outer-clock-face"> <div class="marking marking-one"></div> <div class="marking marking-two"></div> <div class="marking marking-three"></div> <div class="marking marking-four"></div> <div class="inner-clock-face"> <div class="hand hour-hand"></div> <div class="hand min-hand"></div> <div class="hand second-hand"></div> </div> </div> </div> <script src="./index.js"></script> </body> </html>
CSS
首先我們附上代碼
html { background: #CCCCFF; font-size: 10px; } body { height: 100vh; margin: 0; font-size: 2rem; display: flex; justify-content: center; align-items: center; } .clock { width: 30rem; height: 30rem; border: 7px solid #ffebdb; border-radius: 50%; box-shadow: -4px -4px 10px rgba(67, 67, 67, 0.1), inset 4px 4px 10px rgba(168, 145, 128, 0.6), inset -4px -4px 10px rgba(201, 175, 155, 0.2), 4px 4px 10px rgba(168, 145, 128, 0.6); background-image: url("https://p26-passport.byteacctimg.com/img/user-avatar/6836faf9f43e8c77ef339218ab8b601b~130x130.awebp"); background-size: 108%; padding: 2rem; } .outer-clock-face { width: 100%; height: 100%; border-radius: 50%; position: relative; display: flex; justify-content: center; align-items: center; } .outer-clock-face::before, .outer-clock-face::after { content: ''; width: 10px; height: 100%; background: #596230; position: absolute; border-radius: 8px; } .outer-clock-face::after { transform: rotate(90deg); } .marking { width: 3px; height: 100%; background: #596230; position: absolute; } /*通過旋轉(zhuǎn)實(shí)現(xiàn)背景圖上六根分隔線將時(shí)鐘分隔的效果*/ .marking-one { transform: rotateZ(30deg); } .marking-two { transform: rotateZ(60deg); } .marking-three { transform: rotateZ(120deg); } .marking-four { transform: rotateZ(150deg); } .inner-clock-face { position: absolute; top: 10%; left: 10%; width: 80%; height: 80%; background-color: #fffebd; z-index: 2; border-radius: 50%; /*導(dǎo)入外部圖片,也就是時(shí)鐘的背景圖*/ background-image: url("https://p26-passport.byteacctimg.com/img/user-avatar/6836faf9f43e8c77ef339218ab8b601b~130x130.awebp"); background-size: 108%; } .inner-clock-face::after { content: ''; position: absolute; width: 16px; height: 16px; border-radius: 50%; background: #4d4b63; top: 50%; left: 50%; transform: translate(-50%, -50%); } .hand { width: 50%; height: 6px; background: red; border-radius: 6px; position: absolute; top: 50%; right: 50%; margin-top: -3px; /*transform-origin修改旋轉(zhuǎn)中心*/ transform-origin: 100% 50%; transform: rotate(90deg); } .hour-hand { width: 30%; } .min-hand { width: 40%; height: 3px; } .second-hand { background: #b3b3b3; width: 45%; height: 2px; }
全局樣式(html和body) :
html
選擇器用于設(shè)置整個(gè)HTML文檔的全局樣式。background
屬性設(shè)置了背景顏色為淺紫色。font-size
屬性設(shè)置了字體大小為10px。
Body樣式:
body
選擇器用于設(shè)置整個(gè)網(wǎng)頁的主體樣式。height
屬性設(shè)置頁面高度為視口高度(100vh)。margin
屬性設(shè)置邊距為0,以確保沒有默認(rèn)邊距。font-size
屬性設(shè)置字體大小為2rem,相對于根元素的字體大小。display: flex
和justify-content
以及align-items
屬性用于將頁面內(nèi)容垂直和水平居中顯示。
時(shí)鐘容器樣式 (.clock) :
width
和height
屬性設(shè)置了時(shí)鐘的寬度和高度,使其呈現(xiàn)為一個(gè)圓形。border
屬性定義了時(shí)鐘的邊框樣式。border-radius
屬性設(shè)置邊框?yàn)閳A形。box-shadow
屬性添加了陰影效果。background-image
屬性設(shè)置了時(shí)鐘的背景圖像。background-size
屬性控制了背景圖像的大小。padding
屬性為時(shí)鐘周圍添加了內(nèi)邊距。
外部表盤樣式 (.outer-clock-face) :
width
、height
和border-radius
屬性定義了外部表盤的樣式。::before
和::after
偽元素用于創(chuàng)建兩個(gè)垂直的短條形元素。transform
屬性用于旋轉(zhuǎn)::after
偽元素,實(shí)現(xiàn)垂直排列。
刻度樣式 (.marking, .marking-one, .marking-two, .marking-three, .marking-four) :
- 這些類定義了表盤上的標(biāo)記或刻度的樣式。
- 通過
transform
屬性的旋轉(zhuǎn)來將標(biāo)記放置在不同的位置,實(shí)現(xiàn)分隔線的效果。
內(nèi)部表盤樣式 (.inner-clock-face) :
width
、height
、border-radius
屬性設(shè)置內(nèi)部表盤的樣式。background-image
屬性設(shè)置內(nèi)部表盤的背景圖像。
內(nèi)部表盤中心點(diǎn)樣式 (.inner-clock-face::after) :
- 偽元素
::after
用于創(chuàng)建時(shí)鐘內(nèi)部的中心點(diǎn)。 - 它通過
width
、height
、border-radius
等屬性定義了一個(gè)小圓形。
- 偽元素
指針樣式 (.hand, .hour-hand, .min-hand, .second-hand) :
- 這些類定義了不同類型的時(shí)鐘指針的樣式。
- 它們設(shè)置了指針的寬度、高度、顏色、圓角、位置以及旋轉(zhuǎn)中心。
JS
const secondHand = document.querySelector('.second-hand') const minHand = document.querySelector('.min-hand') const hourHand = document.querySelector('.hour-hand') // console.log(secondHand); function setTime() { const now = new Date() // 獲取當(dāng)前的秒數(shù) const seconds = now.getSeconds() // 30 const secondsDegrees = seconds * 6 + 90 secondHand.style.transform = `rotate(${secondsDegrees}deg)` // 獲取到分?jǐn)?shù) const mins = now.getMinutes() // 40 const minsDegrees = mins * 6 + 90 minHand.style.transform = `rotate(${minsDegrees}deg)` // 獲取到時(shí) const hour = now.getHours() // 21 const hourDegrees = hour * 30 + 90 + (mins / 60) * 30 hourHand.style.transform = `rotate(${hourDegrees}deg)` } setTime() setInterval(setTime, 1000)
const secondHand = document.querySelector('.second-hand')
、const minHand = document.querySelector('.min-hand')
和const hourHand = document.querySelector('.hour-hand')
:這些代碼行通過document.querySelector
方法獲取了頁面中具有特定類名的HTML元素,分別表示秒針、分針和時(shí)針的指針元素。這些元素將用于通過改變其style.transform
屬性來旋轉(zhuǎn)它們以模擬時(shí)鐘的運(yùn)行。function setTime()
:這是一個(gè)用于更新時(shí)鐘指針位置的JavaScript函數(shù)。函數(shù)內(nèi)部執(zhí)行以下操作:- 獲取當(dāng)前的日期和時(shí)間:通過
new Date()
創(chuàng)建一個(gè)Date
對象,然后使用getSeconds()
、getMinutes()
和getHours()
方法分別獲取當(dāng)前的秒、分和時(shí)。 - 計(jì)算秒針的旋轉(zhuǎn)角度:將秒數(shù)乘以6并加上90度,這是因?yàn)?2點(diǎn)位置對應(yīng)90度,而每秒鐘對應(yīng)6度。然后將計(jì)算得到的角度賦值給
secondHand
的style.transform
屬性,通過rotate(deg)
來旋轉(zhuǎn)秒針。 - 計(jì)算分針的旋轉(zhuǎn)角度:類似地,將分鐘數(shù)乘以6并加上90度,然后將計(jì)算得到的角度賦值給
minHand
的style.transform
屬性。 - 計(jì)算時(shí)針的旋轉(zhuǎn)角度:將小時(shí)數(shù)乘以30并加上90度,同時(shí)考慮分鐘數(shù)對時(shí)針的微調(diào),然后將計(jì)算得到的角度賦值給
hourHand
的style.transform
屬性。
- 獲取當(dāng)前的日期和時(shí)間:通過
setTime()
:首次調(diào)用setTime
函數(shù)來初始化時(shí)鐘的指針位置。setInterval(setTime, 1000)
:使用setInterval
函數(shù),每隔1秒(1000毫秒)調(diào)用一次setTime
函數(shù),以不斷更新時(shí)鐘指針的位置,從而實(shí)現(xiàn)模擬時(shí)鐘的運(yùn)行效果。
這段代碼的目的是通過JavaScript實(shí)現(xiàn)了一個(gè)簡單的時(shí)鐘模擬,每秒鐘更新一次時(shí)、分和秒針的位置,以顯示當(dāng)前的時(shí)間。通過獲取當(dāng)前時(shí)間并計(jì)算相應(yīng)的旋轉(zhuǎn)角度,它實(shí)現(xiàn)了時(shí)鐘指針的動(dòng)態(tài)運(yùn)行效果。
以上就是利用用JS實(shí)現(xiàn)一個(gè)實(shí)時(shí)小鬧鐘的詳細(xì)內(nèi)容,更多關(guān)于JS實(shí)時(shí)小鬧鐘的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
前端JavaScript經(jīng)典之Promise詳解
Promise是為了解決回調(diào)地獄問題而誕生的,它提供了優(yōu)雅的異步回調(diào)解決方案,這篇文章主要介紹了前端JavaScript經(jīng)典之Promise的相關(guān)資料,需要的朋友可以參考下2024-09-09統(tǒng)計(jì)出現(xiàn)最多的字符次數(shù)的js代碼
一小段代碼,經(jīng)常出現(xiàn)在面試筆試題中的:統(tǒng)計(jì)一個(gè)字符串中出現(xiàn)最多的字符的次數(shù),可以是英文或者數(shù)字。2010-12-12javascript中callee與caller的區(qū)別分析
有些小伙伴可能會(huì)問caller,callee 是什么?在javascript 中有什么樣的作用?那么本篇會(huì)對于此做一些基本介紹。希望能夠?qū)Υ蠹依斫鈐avascript中的callee與caller有所幫助。2015-04-04Bootstrap實(shí)現(xiàn)省市區(qū)三級聯(lián)動(dòng)(親測可用)
這篇文章主要為大家詳細(xì)介紹了Bootstrap實(shí)現(xiàn)省市區(qū)三級聯(lián)動(dòng),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-07-07javascript實(shí)現(xiàn)無法關(guān)閉的彈框
本文分享了javascript實(shí)現(xiàn)無法關(guān)閉的彈框的實(shí)例代碼,感興趣的朋友可以看下2016-11-11JavaScript實(shí)現(xiàn)簡單省市聯(lián)動(dòng)
這篇文章主要為大家詳細(xì)介紹了JavaScript實(shí)現(xiàn)簡單省市聯(lián)動(dòng),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-10-10JavaScript導(dǎo)出CSV文件不完整的問題解決方法
在JavaScript中處理CSV文件時(shí),需要特別注意一些特殊字符,例如逗號、雙引號、換行符等,這些字符可能會(huì)影響CSV文件的解析,導(dǎo)致數(shù)據(jù)錯(cuò)亂,所以本文給大家介紹了如何解決JavaScript導(dǎo)出CSV文件不完整的問題,需要的朋友可以參考下2024-06-06