banner
banner
banner
NEWS LETTER

案例-电子表指针转动Date

Scroll down

核心

  • 读秒:
    • let now = new Date()
    • let seconds = now.getSeconds()
    • let minutes = now.getMinutes()
    • let hours = now.getHours()
  • 计算指针旋转的度数
    • let secondsDeg = ((seconds /60) * 360) + 90 // 这是分针
    • let minutesDeg = ((minutes / 60) _ 360) + ((seconds / 60) _ 6) + 90 // 这是秒针
    • let hoursDeg = ((hours / 12) _ 360) + ((minutes / 60) _ 30) + 90 // 这是时针
  • 设置指针角度
    • 时/分/秒指针 dom.style.transform = rotate(${secondsDeg/minutesDeg/hoursDeg}deg)
其他文章
cover
案例-对齐文本
  • 24/10/30
  • 15:29
  • CSS&HTML
cover
Html-html5和CSS3新特性
  • 24/10/30
  • 15:29
  • CSS&HTML
目录导航 置顶
  1. 1. 核心
请输入关键词进行搜索