html + js + css 实现漂亮的无图实时时钟

前言

原生 javascript + css + html 实现实时时钟

以前做过很多在线时钟,一般都是用背景图和 js 文件生成的。随着 css3 功能的增强,我发现不用背景图也能生成漂亮的时钟,如上图所示。文章末尾放了项目源码,有需要的可自取。

1. Html 介绍

Html 部分比较简单。定义了一个时钟 div,其中包含原点、小时、分钟、秒针、日期和时间。至于时钟上的刻度、数字等元素,因为量比较大,是用 javascript 生成的。




    
    
    clock


2. CSS 介绍

在开始介绍代码之前,有一些 CSS 属性需要了解,例如 positionborder-radiustransform 等。

2.1 Position 属性

position 属性指定元素的定位类型。有五个值:绝对、固定、相对、静态、继承。默认是静态的,即没有定位,按照正常的文档流显示元素。

这里主要使用 absoluterelativeabsulte 值,将元素设置为绝对定位,相对于第一个通过静态定位意想不到的父元素进行定位。

位置可以通过 lefttoprightbottom 属性定位;是静态定位,是相对于body元素的位置定位的。

本例中最外层的 div 时钟设置为 relative,所有下级元素设置为 absolute 绝对定位,然后通过设置 lefttop 等属性的值确定相对时钟的位置。

2.2 border-radius 属性

border-radius 属性为元素添加圆角边框,可以设置四个圆角的大小。在这个例子中,使用该属性将时钟元素设置为圆形,这里写一个例子:4 个 div 元素,每个元素的宽高为100px,不同 border-radius 的效果:

2.3 transform 属性

transform 属性将 2D3D 旋转应用于元素,它允许我们旋转缩放移动或倾斜元素。本例中时针、分针、秒针、刻度等都是用 transform 属性旋转的;另外,transform-origin 属性可以设置元素的基点位置。

*{
    margin:0;
    padding:0;
}
.clock{
    width:400px;
    height:400px;
    border:10px solid #333;
    box-shadow: 0px 0px 20px 3px #444 inset;
    border-radius:210px;
    position:relative;
    margin:5px auto;
    z-index:10;
    background-color:#f6f6f6;
}
/* clock num */
.clock-num{
    width:40px;
    height:40px;
    font-size:22px;
    text-align:center;
    line-height:40px;
    position:absolute;
    z-index:8;
    color:#555;
    font-family:fantasy, 'Trebuchet MS';
}
.em_num{
    font-size:28px;
}
/* clock line */
.clock-line{
    position:absolute;
    z-index:20;
}
.hour-line{width:100px;
    height:4px;
    top:198px;
    left:200px;
    background-color:#000;
    border-radius:2px;
    transform-origin:0 50%;
    box-shadow:1px -3px 8px 3px #aaa;
}
.minute-line{
    width:130px;
    height:2px;
    top:199px;
    left:190px;
    background-color:#000;
    transform-origin:7.692% 50%;
    box-shadow:1px -3px 8px 1px #aaa;
}
.second-line{
    width:170px;
    height:1px;
    top:199.5px;
    left:180px;
    background-color:#f60;
    transform-origin:11.765% 50%;
    box-shadow:1px -3px 7px 1px #bbb;
}
/* origin */
.origin{
    width:20px;
    height:20px;
    border-radius:10px;
    background-color:#000;
    position:absolute;
    top:190px;
    left:190px;
    z-index:14;
}
/* date-info */
.date-info{
    width:160px;
    height:28px;
    line-height:28px;
    text-align:center;
    position:absolute;
    top:230px;
    left:120px;
    z-index:11;
    color:#555;
    font-weight:bold;
}
.time-info{
    width:92px;
    height:30px;
    line-height:30px;
    text-align:center;
    position:absolute;
    top:270px;
    left:154px;
    z-index:11;
    background-color:#555;
    padding:0;
    box-shadow:0px 0px 9px 2px #222 inset;
}
.time{
    width:30px;
    height:30px;
    text-align:center;
    float:left;
    color:#fff;
    font-weight:bold;
}
#minute-time{
    border-left:1px solid #fff;
    border-right:1px solid #fff;
}
/* scale */
.clock-scale{
    width:195px;
    height:2px;
    transform-origin:0% 50%;
    z-index:7;
    position:absolute;
    top:199px;
    left:200px;
}
.scale-show{
    width:12px;
    height:2px;
    background-color:#555;
    float:left;
}
.scale-hidden{
    width:183px;
    height:2px;
    float:left;
}

3. JavaScript 介绍

js 部分没什么好说的,简单的 dom 操作,setInterval 函数每秒执行一次,可以修改指针的角度和显示时间。代码显示如下:

(function(){
    window.onload=initNumXY(200, 160, 40,40);
    var hour_line = document.getElementById("hour-line");
    var minute_line = document.getElementById("minute-line");
    var second_line = document.getElementById("second-line");
    var date_info = document.getElementById("date-info");
    /*
    var week_day = [
    'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'
    ];
    */
    var week_day = [
        'Sun.', 'Mon.', 'Tues.', 'Wed.', 'Thur.', 'Fri.', 'Sat.'
    ];
    var hour_time = document.getElementById("hour-time");
    var minute_time = document.getElementById("minute-time");
    var second_time = document.getElementById("second-time");
    function setTime(){
        var this_day = new Date();
        var hour = (this_day.getHours() >= 12) ?
            (this_day.getHours() - 12) : this_day.getHours();
        var minute = this_day.getMinutes();
        var second = this_day.getSeconds();
        var hour_rotate = (hour*30-90) + (Math.floor(minute / 12) * 6);
        var year = this_day.getFullYear();
        var month = ((this_day.getMonth() + 1) < 10 ) ?
            "0"+(this_day.getMonth() + 1) : (this_day.getMonth() + 1);
        var date = (this_day.getDate() < 10 ) ?
            "0"+this_day.getDate() : this_day.getDate();
        var day = this_day.getDay();
        hour_line.style.transform = 'rotate(' + hour_rotate + 'deg)';
        minute_line.style.transform = 'rotate(' + (minute*6 - 90) + 'deg)';
        second_line.style.transform = 'rotate(' + (second*6 - 90)+'deg)';
        date_info.innerHTML =
            year + "-" + month + "-" + date + " " + week_day[day];
        hour_time.innerHTML = (this_day.getHours() < 10) ?
            "0" + this_day.getHours() : this_day.getHours();
        minute_time.innerHTML = (this_day.getMinutes() < 10) ?
            "0" + this_day.getMinutes() : this_day.getMinutes();
        second_time.innerHTML = (this_day.getSeconds() < 10) ?
            "0" + this_day.getSeconds():this_day.getSeconds();
    }
    setInterval(setTime, 1000);
    function initNumXY(R, r, w, h){
        var numXY = [
            {
                "left" : R + 0.5 * r - 0.5 * w,
                "top" : R - 0.5 * r * 1.73205 - 0.5 * h
            },
            {
                "left" : R + 0.5 * r * 1.73205 - 0.5 * w,
                "top" : R - 0.5 * r - 0.5 * h
            },
            {
                "left" : R + r - 0.5 * w,
                "top" : R - 0.5 * h
            },
            {
                "left" : R + 0.5 * r * 1.73205 - 0.5 * w,
                "top" : R + 0.5 * r - 0.5 * h
            },
            {
                "left" : R + 0.5 * r - 0.5 * w,
                "top" : R + 0.5 * r * 1.732 - 0.5 * h
            },
            {
                "left" : R - 0.5 * w,
                "top" : R + r - 0.5 * h
            },
            {
                "left" : R - 0.5 * r - 0.5 * w,
                "top" : R + 0.5 * r * 1.732 - 0.5 * h
            },
            {
                "left" : R - 0.5 * r * 1.73205 - 0.5 * w,
                "top" : R + 0.5 * r - 0.5 * h
            },
            {
                "left" : R - r - 0.5 * w,
                "top" : R - 0.5 * h
            },
            {
                "left" : R - 0.5 * r * 1.73205 - 0.5 * w,
                "top" : R - 0.5 * r - 0.5 * h
            },
            {
                "left" : R - 0.5 * r - 0.5 * w,
                "top": R - 0.5 * r * 1.73205 - 0.5 * h
            },
            {
                "left" : R - 0.5 * w,
                "top" : R - r - 0.5 * h
            }
        ];
        var clock = document.getElementById("clock");
        for(var i = 1; i <= 12; i++){
            if(i%3 == 0) {
                clock.innerHTML += "
"+i+"
"; } else { clock.innerHTML += "
" + i + "
"; } } var clock_num = document.getElementsByClassName("clock-num"); for(var i = 0; i < clock_num.length; i++) { clock_num[i].style.left = numXY[i].left + 'px'; clock_num[i].style.top = numXY[i].top + 'px'; } for(var i = 0; i < 60; i++) { clock.innerHTML += "
" + "
" + "
" + "
"; } var scale = document.getElementsByClassName("clock-scale"); for(var i = 0; i < scale.length; i++) { scale[i].style.transform="rotate(" + (i * 6 - 90) + "deg)"; } } })();

你可能感兴趣的:(html + js + css 实现漂亮的无图实时时钟)