vue js实现时钟以及刻度效果

2025.01.08今天我学习如何用js实现时钟样式,效果如下:

一、html代码如下:

<template>
  <!--圆圈-->
  <div class="notice_border">
    <div class="notice_position notice_name_class" v-for="item in [3,6,9,12]">{{ item }}</div>
    <!--最中心的点-->
    <div class="notice_node"/>
    <!--时针-->
    <div class="notice_hour_class" ref="hour_time"/>
    <!--分针-->
    <div class="notice_minutes_class" ref="second_time"/>
    <!--刻度线-->
    <div class="scale_class" :ref="`scale_${index}`" v-for="(item,index) in 60" :key="index"/>
  </div>
</template>

二、js代码如下:

<script>
export default{
  data(){
    return{

     }
  },
  mounted(){
    this.get_notice_time();
  },
  methods:{
    get_notice_time(){
     let notice_time = '12:00';//时间格式
      for (let i = 0; i < 60; i++) {
        let scale_class = this.$refs[`scale_${i}`];  // 获取每个元素
        scale_class[0].style.transform = `rotate(${i * 6}deg)`;  // 修改样式
      }

      let hour_time = this.$refs.hour_time;//时针
      let second_time = this.$refs.second_time;//分针
      if (notice_time!= 0) {
        hour_time.style.transform = `rotate(${moment(notice_time.split(':')[0], 'HH').format('H') * 30}deg)`;//时针一次转30°
        second_time.style.transform = `rotate(${moment(notice_time.split(':')[1], 'mm').format('m') * 6}deg)`;//分针一次转6°
      }
    }
  }
}
</script>

三、style代码如下:

<style>
//圆圈样式
.notice_border {
  width: 58%;
  height: 57%;
  border-radius: 100%;
  border: 5px solid #3673E3;
  position: absolute;
  right: 10%;
  top: 14%;
}

//字体位置
.notice_position {
  position: absolute;
  color: skyblue;
  font-weight: bolder;
}

//字体样式 3,6,9,12
.notice_name_class:nth-child(1) {
  right: 7%;
  top: 41%;
}

.notice_name_class:nth-child(2) {
  right: 44%;
  bottom: 4%;
}

.notice_name_class:nth-child(3) {
  left: 8%;
  top: 41%;
}

.notice_name_class:nth-child(4) {
  left: 42%;
  top: 4%;
}

//节点样式
.notice_node {
  position: absolute;
  width: 10%;
  height: 10%;
  border-radius: 100%;
  background-color: #3673E3;
  left: 45%;
  top: 45%;
  z-index: 2;
}

//时针样式
.notice_hour_class {
  position: absolute;
  width: 5%;
  height: 20%;
  background-color: red;
  left: 47.5%;
  top: 30%;
  border-radius: 5px 5px 0 0;
  z-index: 1;
  transform-origin: bottom; //绕着底部旋转
  //transform: rotate(90deg);
}

//分针样式
.notice_minutes_class {
  position: absolute;
  width: 5%;
  height: 33%;
  background-color: #3673E3;
  //background-color: white;
  left: 47.5%;
  top: 18%;
  border-radius: 5px 5px 0 0;
  transform-origin: bottom; //绕着底部旋转
}

//默认刻度线
.scale_class {
  position: absolute;
  width: 1%;
  height: 7%;
  background-color: #3673E3;
  top: 0;
  left: 50%;
  transform-origin: center 60px;//设置中心点旋转,要绕着notice_node 
}

//循环每一个刻度线,5的倍数
.scale_class:nth-of-type(5n-2) {
  width: 2.5%;
  height: 10%;
}
</style>

四、完整代码如下:

可以用作时钟的通用组件。

<template>
  <!--圆圈-->
  <div class="notice_border">
    <div class="notice_position notice_name_class" v-for="item in [3,6,9,12]">{{ item }}</div>
    <!--最中心的点-->
    <div class="notice_node"/>
    <!--时针-->
    <div class="notice_hour_class" ref="hour_time"/>
    <!--分针-->
    <div class="notice_minutes_class" ref="second_time"/>
    <!--刻度线-->
    <div class="scale_class" :ref="`scale_${index}`" v-for="(item,index) in 60" :key="index"/>
  </div>
</template>
<script>
import moment from "moment";

export default {
  data(){
    return{
      notice_time:'',//时间
    }
  },
  props: {
    // 获取传入时间
    props_time: {
      type: [String,Number],
    }
  },
  watch:{
    props_time(newVal,oldVal){
      this.notice_time = newVal;
      this.get_notice_time();
    },deep:true
  },
  methods: {
    get_notice_time() {
      //let notice_time = this.notice_time;//时间格式
      let notice_time = '12:00';//时间格式
      for (let i = 0; i < 60; i++) {
        let scale_class = this.$refs[`scale_${i}`];  // 获取每个元素
        scale_class[0].style.transform = `rotate(${i * 6}deg)`;  // 修改样式
      }

      let hour_time = this.$refs.hour_time;//时针
      let second_time = this.$refs.second_time;//分针
      if (notice_time != 0) {//防止时间为空
        hour_time.style.transform = `rotate(${moment(notice_time.split(':')[0], 'HH').format('H') * 30}deg)`;//时针一次转30°
        second_time.style.transform = `rotate(${moment(notice_time.split(':')[1], 'mm').format('m') * 6}deg)`;//分针一次转6°
      }
    }
  }
}
</script>
<style scoped lang="less">
.notice_border {
  width: 58%;
  height: 57%;
  border-radius: 100%;
  border: 5px solid #3673E3;
  position: relative;
}


.notice_position {
  position: absolute;
  color: skyblue;
  font-weight: bolder;
}

.notice_name_class:nth-child(1) {
  right: 7%;
  top: 41%;
}

.notice_name_class:nth-child(2) {
  right: 44%;
  bottom: 4%;
}

.notice_name_class:nth-child(3) {
  left: 8%;
  top: 41%;
}

.notice_name_class:nth-child(4) {
  left: 42%;
  top: 4%;
}

.notice_node {
  position: absolute;
  width: 10%;
  height: 10%;
  border-radius: 100%;
  background-color: #3673E3;
  left: 45%;
  top: 45%;
  z-index: 2;
}

.notice_hour_class {
  position: absolute;
  width: 5%;
  height: 20%;
  background-color: red;
  left: 47.5%;
  top: 30%;
  border-radius: 5px 5px 0 0;
  z-index: 1;
  transform-origin: bottom;
  //transform: rotate(90deg);
}

.notice_minutes_class {
  position: absolute;
  width: 5%;
  height: 33%;
  background-color: #3673E3;
  left: 47.5%;
  top: 18%;
  border-radius: 5px 5px 0 0;
  transform-origin: bottom;
}

.scale_class {
  position: absolute;
  width: 1%;
  height: 7%;
  background-color: #3673E3;
  top: 0;
  left: 50%;
  transform-origin: center 60px;
}

.scale_class:nth-of-type(5n-2) {
  width: 2.5%;
  height: 10%;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/950956.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

Docker入门之docker基本命令

Docker入门之docker基本命令 官方网站&#xff1a;https://www.docker.com/ 1. 拉取官方镜像并创建容器&#xff08;以redis为例&#xff09; 拉取官方镜像 docker pull redis# 如果不需要添加到自定义网络使用这个命令&#xff0c;如需要&#xff0c;直接看第二步 docker r…

“深入浅出”系列之FFmpeg:(1)音视频开发基础

我的音视频开发大部分内容是跟着雷霄骅大佬学习的&#xff0c;所以笔记也是跟雷老师的博客写的。 一、音视频相关的基础知识 首先播放一个视频文件的流程如下所示&#xff1a; FFmpeg的作用就是将H.264格式的数据转换成YUV格式的数据&#xff0c;然后SDL将YUV显示到电脑屏幕上…

【JAVA基础】Collections方法的具体使用方法

java基础中Collections及collect(toList,toSet,toMap)的用法 package com.gaofeng;import java.util.*; import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.Stream;public class demo01 {public static void main(String[] …

深度学习知识点:RNN

文章目录 1.简单介绍2.网络结构3.应对梯度消失 1.简单介绍 循环神经网络&#xff08;RNN&#xff0c;Recurrent Neural Network&#xff09;是一类用于处理序列数据的神经网络。与传统网络相比&#xff0c;变化不是特别大&#xff0c;不如CNN的变化那么大。 为什么要有循环神经…

超完整Docker学习记录,Docker常用命令详解

前言 关于国内拉取不到docker镜像的问题&#xff0c;可以利用Github Action将需要的镜像转存到阿里云私有仓库&#xff0c;然后再通过阿里云私有仓库去拉取就可以了。 参考项目地址&#xff1a;使用Github Action将国外的Docker镜像转存到阿里云私有仓库 一、Docker简介 Do…

MySQL学习笔记(二)

一、SQL-函数 函数-介绍 函数是指一段可以直接被另一段程序调用的程序或代码。 字符串函数 示例 --concat select concat(Hello,MySql); --upper select upper(Hello); --lpad select lpad(01,5,-); --trim select trim( Hello MySQL ); --中间空格还在&#xff0c;头尾…

java mail 535 Login Fail. Please enter your authorization code to login

报错信息提示查看 https://service.mail.qq.com/detail/0/53 帮助页面意思就是说你要使用授权码登录, 但是授权码我已经正确的设置上去了 后面从 QQ邮箱出现错误 Please enter your authorization code to_邮件群发-双翼邮件群发软件官方网 看到 账户 需要是 QQ号 例如…

mysql、postgresql、druid链接池踩坑记录

The last packet successfully received from the server wIs 10,010 milliseconds ago. The last packet sent successfully to the server was 10,010 milliseconds ago.### The error may exist in URL mysql 链接字符串没有 &connectTimeout600000&socketTimeout6…

安卓NDK视觉开发——手机拍照文档边缘检测实现方法与库封装

一、项目创建 创建NDK项目有两种方式&#xff0c;一种从新创建整个项目&#xff0c;一个在创建好的项目添加NDK接口。 1.创建NDK项目 创建 一个Native C项目&#xff1a; 选择包名、API版本与算法交互的语言&#xff1a; 选择C版本&#xff1a; 创建完之后&#xff0c;可…

Spring Boot教程之五十二:CrudRepository 和 JpaRepository 之间的区别

Spring Boot – CrudRepository 和 JpaRepository 之间的区别 Spring Boot建立在 Spring 之上&#xff0c;包含 Spring 的所有功能。由于其快速的生产就绪环境&#xff0c;使开发人员能够直接专注于逻辑&#xff0c;而不必费力配置和设置&#xff0c;因此如今它正成为开发人员…

【网页自动化】篡改猴入门教程

安装篡改猴 打开浏览器扩展商店&#xff08;Edge、Chrome、Firefox 等&#xff09;。搜索 Tampermonkey 并安装。 如图安装后&#xff0c;浏览器右上角会显示一个带有猴子图标的按钮。 创建用户脚本 已进入篡改猴管理面板点击创建 脚本注释说明 name&#xff1a;脚本名称。…

spark汇总

目录 描述运行模式1. Windows模式代码示例 2. Local模式3. Standalone模式 RDD描述特性RDD创建代码示例&#xff08;并行化创建&#xff09;代码示例&#xff08;读取外部数据&#xff09;代码示例&#xff08;读取目录下的所有文件&#xff09; 算子DAGSparkSQLSparkStreaming…

Spring AMQP-保证发送者消息的可靠性

1. 消息发送者的可靠性 保证消息的可靠性可以通过发送者重连和发送者确认来实现 发送者重连 发送者重连机制就是在发送信息的时候如果连接不上mq不会立即结束&#xff0c;而是会在一定的时间间隔之类进行重新连接&#xff0c;连接的次数和时间都是由我们在配置文件中指定的&…

vs2022编译webrtc步骤

1、主要步骤说明 概述&#xff1a;基础环境必须有&#xff0c;比如git&#xff0c;Powershell这些&#xff0c;就不写到下面了。 1.1 安装vs2022 1、选择使用C的桌面开发 2、 Windows 10 SDK安装10.0.20348.0 3、勾选MFC及ATL这两项 4、 安装完VS2022后&#xff0c;必须安…

UnityWebGl:打包成webgl后UGUI不显示文字(中文)问题

是由于unity默认使用的是Arial,导致打包成webgl时中文不显示 解决方案&#xff1a; 可在电脑C盘下&#xff0c;路径为C:\Windows\Fonts 找个中文简体的字体文件放到unity里面&#xff0c;格式必须为. ttf

ffmpeg-avio实战:打开本地文件或者网络直播流dome

使用ffmpeg打开打开本地文件或者网络直播流的一个小dome。流程产靠ffmpeg4.x系列的解码流程-CSDN博客 #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> #include <libavformat/avio.h> #include <libavutil/file.h> #include &l…

英伟达打造个人 AI 超级计算机:Project DIGITS 震撼登场

手掌大小的超级计算机 Nvidia 在 CES 2025 上为桌面用户推出了 一款大小和手掌差不多的超级计算机——Project DIGITS AI 超级计算机。虽然它的大小和一个手掌差不多&#xff0c;但性能方面可以说是强到惊人。 Project DIGITS Project DIGITS Project DIGITS 搭载全新的 GB10 G…

SAP SD学习笔记26 - 贩卖契约(框架协议)的概要,基本契约 - 数量契约

上一章讲了品目阶层&#xff08;产品层次结构&#xff09;&#xff0c;品揃Module(分类模块) 。 SAP SD学习笔记25 - 品目阶层&#xff08;产品层次结构&#xff09;、品揃Module&#xff08;分类模块&#xff09;-CSDN博客 本章继续讲SAP的知识&#xff1a;贩卖契约&#xff…

ESP32 IDF VScode出现头文件“无法打开 源 文件 ”,并有红色下划线警告

问题背景&#xff1a; ESP32 IDF VScode出现头文件“无法打开 源 文件 ”&#xff0c;并有红色下划线警告&#xff1a; 解决办法&#xff1a; 在工程里面的.vscode文件夹下&#xff0c;检查是否存在c_cpp_properties.json文件&#xff0c;如果没有可以手动创建添加。如图…

GaussDB事务和并发控制机制

目录 一、并发控制机制 二、MVCC实现方式 三、快照实现方式 四、GaussDB的并发控制机制 五、GaussDB基于事务提交时间戳的MVCC和快照机制 六、GaussDB分布式事务 七、总结与展望 事务是数据库的核心功能之一&#xff0c;其主要目的是保障数据库系统在并发处理、系统故障…