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

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

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

相关文章
|
1月前
|
开发者
ThreeJs实现小球自由落体效果
这篇文章详细介绍了如何在Three.js中利用物理引擎Cannon.js实现小球自由落体效果,包括物理世界的创建、物体的添加及同步物理状态到三维场景中的具体实现。
43 3
ThreeJs实现小球自由落体效果
|
28天前
|
前端开发 程序员
给圆点添加呼吸动画,老板说我很有想法
【10月更文挑战第13天】给圆点添加呼吸动画,老板说我很有想法
给圆点添加呼吸动画,老板说我很有想法
|
5月前
|
Shell
自由落体
【6月更文挑战第8天】自由落体。
50 9
|
11月前
|
前端开发
HTML+CSS实现弹跳球效果
HTML+CSS实现弹跳球效果
wustojc2012自由落体
wustojc2012自由落体
32 0
|
JavaScript
html+css+js实现无缝隙跑马灯
html+css+js实现无缝隙跑马灯
171 0
求小球下落弹起的高度与路程
求小球下落弹起的高度与路程
113 0
|
前端开发 JavaScript
使用html+css+JavaScript制作抛物线小球
使用html+css+JavaScript制作抛物线小球
156 0
|
前端开发 JavaScript 内存技术
css动画animation绘制向四周扩散的圆圈
css动画animation绘制向四周扩散的圆圈
1416 0