干货分享 | 如何快速实现炫酷太空人表盘!!

简介: 干货分享 | 如何快速实现炫酷太空人表盘!!

HTML、CSS、JS实现炫酷太空人表盘

使用最原始前端语言,简单实现一个炫酷太空人表盘。因为实现过程本身过于简单,下面就直接放上成果图片和部分代码。

效果图展示
0f12b6110ff84911bb6e5a778e6ed430.gif
HTML代码

<html>
<head>
    <title>炫酷太空人表盘</title>
    <meta charset="UTF-8">
    <link href="./style.css" rel="stylesheet">
    <script src="./timeGeneration.js"></script>
</head>
<body>
<div class="time">
    <div class="time-h-h" id="hh"></div>
    <div class="time-h-l" id="hl"></div>
    <div class="time-rect"></div>
    <div class="time-m-h" id="mh"></div>
    <div class="time-m-l" id="ml"></div>
    <div class="time-s-h" id="sh"></div>
    <div class="time-s-l" id="sl"></div>
    <div class="human"></div>
    <div class="date" id="date"></div>
    <div class="calendar" id="calendarDate"></div>
</div>
</body>
<script>
    function WatchMeter() {
        this._initDom()     // 初始化dom
        this.update()       // 更新
        this.date = new TimeGeneration()
    }
    // 修改原型
    WatchMeter.prototype = {
        constructor: WatchMeter,
        // 初始化Dom
        _initDom: function () {
            this.elem = {}
            this.elem.hh = document.getElementById('hh')
            this.elem.hl = document.getElementById('hl')
            this.elem.mh = document.getElementById('mh')
            this.elem.ml = document.getElementById('ml')
            this.elem.sh = document.getElementById('sh')
            this.elem.sl = document.getElementById('sl')
            this.elem.date = document.getElementById('date')
            this.elem.calendarDate = document.getElementById('calendarDate')
        },
        // 更新
        update: function () {
            var _this = this
            setInterval(function () {
                _this._render(_this.date.getDate(), _this.date.getCalendarDate(), _this.date.getTime())
            }, 1000)
        },
        // 渲染
        _render: function (date, calendarDate, time) {
            this._setNumberImage(this.elem.hh, time[0])
            this._setNumberImage(this.elem.hl, time[1])
            this._setNumberImage(this.elem.mh, time[2])
            this._setNumberImage(this.elem.ml, time[3])
            this._setNumberImage(this.elem.sh, time[4])
            this._setNumberImage(this.elem.sl, time[5])
            this.elem.date.innerText = date[2] + " " +date[0] + "/" +date[1]
            this.elem.calendarDate.innerText = calendarDate
        },
        // 设置数字
        _setNumberImage: function (elem, value) {
            elem.style.backgroundImage = "url(./img/" + value + ".png)";
        }
    }
    var myWatchMeter = new WatchMeter()
</script>
</html>

如有需要

点击获取全部代码 =>炫酷表盘Watch.zip

相关文章
|
28天前
|
开发者
ThreeJs实现小球自由落体效果
这篇文章详细介绍了如何在Three.js中利用物理引擎Cannon.js实现小球自由落体效果,包括物理世界的创建、物体的添加及同步物理状态到三维场景中的具体实现。
38 3
ThreeJs实现小球自由落体效果
|
27天前
ThreeJs绘制圆柱体
这篇文章介绍了在Three.js中绘制圆柱体的方法,包括创建圆柱体几何体、设置材质以及将其正确放置在三维场景中的技巧。
36 0
ThreeJs绘制圆柱体
|
4月前
|
前端开发
canvas系列教程02——圆、弧线、圆角矩形、曲线(气泡、心形、N叶草)、扇形
canvas系列教程02——圆、弧线、圆角矩形、曲线(气泡、心形、N叶草)、扇形
38 0
|
12月前
颜色拾取器
颜色拾取器
60 0
|
编译器 Windows
<1>[QTCN]颜色拾取器
桌面置顶 获取全局鼠标坐标和颜色(Web值、RGB) 新增: 按下鼠标右键停止/开启
97 1
|
移动开发 HTML5
使用三次贝塞尔曲线绘制弧形菜单
使用三次贝塞尔曲线绘制弧形菜单
|
前端开发 JavaScript
使用html+css+JavaScript制作抛物线小球
使用html+css+JavaScript制作抛物线小球
152 0
|
前端开发 JavaScript 内存技术
css动画animation绘制向四周扩散的圆圈
css动画animation绘制向四周扩散的圆圈
1414 0
|
API
使用Threejs创建几何体并添加材质、光源、阴影、动画,添加坐标轴
使用Threejs创建几何体并添加材质、光源、阴影、动画,添加坐标轴
473 0
使用Threejs创建几何体并添加材质、光源、阴影、动画,添加坐标轴
自由运动滑块和小球的碰撞检测
自由运动滑块和小球的碰撞检测
119 0
自由运动滑块和小球的碰撞检测