javascript技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript技巧 > JS实时小闹钟

利用用JS实现一个实时小闹钟

作者:来颗奇趣蛋

天我们来聊聊如何使用JS来创建一个实时的小闹钟,这个小闹钟十分的有趣,小伙伴们可以运行一下,看看跟你电脑上的时间是否对的上呢,文章通过代码示例介绍的非常详细,需要的朋友可以参考下

结构设计

我们先来观察一下这个小闹钟

我们先将它整体命名为clock,这个闹钟可以分为两个部分,一个外表盘,一个内表盘,我们将它们命名为outer-clock-faceinner-clock-face

接下来我们先来观察外表盘,发现有刻度,我们用marking marking-onemarking marking-twomarking marking-threemarking marking-four四个容器将它们表示出来。

接下来我们来看内表盘,发现里面有时针、秒针、分针这三根针,我们用<div class="hand hour-hand"><div class="hand min-hand">,和<div class="hand second-hand">,来代表它们,最后使用JS使它们呈现动态的效果。

接下来我们来看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;
}

/*通过旋转实现背景图上六根分隔线将时钟分隔的效果*/
.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%;
  /*导入外部图片,也就是时钟的背景图*/
  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修改旋转中心*/
  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;
}

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()

  // 获取当前的秒数
  const seconds = now.getSeconds() // 30
  const secondsDegrees = seconds * 6 + 90
  secondHand.style.transform = `rotate(${secondsDegrees}deg)`

  // 获取到分数
  const mins = now.getMinutes() // 40
  const minsDegrees = mins * 6 + 90
  minHand.style.transform = `rotate(${minsDegrees}deg)`

  // 获取到时
  const hour = now.getHours() // 21
  const hourDegrees = hour * 30 + 90 + (mins / 60) * 30
  hourHand.style.transform = `rotate(${hourDegrees}deg)`
}

setTime()
setInterval(setTime, 1000)

这段代码的目的是通过JavaScript实现了一个简单的时钟模拟,每秒钟更新一次时、分和秒针的位置,以显示当前的时间。通过获取当前时间并计算相应的旋转角度,它实现了时钟指针的动态运行效果。

以上就是利用用JS实现一个实时小闹钟的详细内容,更多关于JS实时小闹钟的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文