分享更有价值
被信任是一种快乐

如何使用CSS3+js实现简单的时钟特效

文章页正文上

小编给大家分享一下如何使用CSS3+js实现简单的时钟特效,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!html代码如下:
css 代码如下:

  2. 初始化默认时间,和表盘刻度 :更改后的css代码:

初始化 js代码:复制代码代码如下:
window.onload = function () {
initClock();
}
var timer = null;
function $(id) {
return document.getElementById(id)
}
function CreateKeDu(pElement, className, deg, translateWidth) {
var Pointer = document.createElement(“div”);
Pointer.className = className
Pointer.style.transform = “rotate(” + deg + “deg) translate(” + translateWidth + “px)”;
pElement.appendChild(Pointer);
}
function initClock() {
var main = $(“biaopan”);
var timeLabel = $(“timeLabel”);
var hour = $(“hour”);
var minute = $(“minute”);
var second = $(“second”);
var now = new Date();
var nowHour = now.getHours();
var nowMinute = now.getMinutes();
var nowSecond = now.getSeconds();
//初始化timeLabel
timeLabel.innerHTML = nowHour + “:” + nowMinute + “:” + nowSecond;
//初始化表盘
for (var index = 0; index CreateKeDu(main, “hourPointer”, index * 90, 138);
}
for (var index = 0; index CreateKeDu(main, “minuterPointer”,index*30, 140);
}
for (var index = 0; index CreateKeDu(main, “secondPointer”, index * 6, 142);
}
//初始化时分秒针
second.style.transform = “rotate(” + (nowSecond * 6 – 90) + “deg)”;
minute.style.transform = “rotate(” + (nowMinute * 6 + 1 / 10 * nowSecond – 90) + “deg)”;
hour.style.transform = “rotate(” + (nowHour * 30 + 1 / 2 * nowMinute + 1 / 120 * nowSecond – 90) + “deg)”;
}3.添加定时器:js代码如下:复制代码代码如下:
//定时器
function startMove() {
clearInterval(timer);
timer = setInterval(function () {
var now = new Date();
var nowSecond = now.getSeconds();
var nowMinute = now.getMinutes();
var nowHour = now.getHours();
second.style.transform = “rotate(” + (nowSecond * 6 – 90) + “deg)”;
minute.style.transform = “rotate(” + (nowMinute * 6 + 1 / 10 * nowSecond – 90) + “deg)”;
hour.style.transform = “rotate(” + (nowHour * 30 + 1 / 2 * nowMinute + 1 / 120 * nowSecond – 90) + “deg)”;
timeLabel.innerHTML = nowHour + “:” + nowMinute + “:” + nowSecond;
}, 1000);
}  4.使用OOP方式更改:修改后的js代码如下:复制代码代码如下:
function Clock() {
//定义属性
this.main = this.$(“biaopan”);
this.timeLabel = this.$(“timeLabel”);
this.hour = this.$(“hour”);
this.minute = this.$(“minute”);
this.second = this.$(“second”);
this.nowHour = null;
this.nowMinute = null;
this.nowSecond = null;
this.timer = null;
var _this = this;
//初始化函数
var init = function () {
_this.getNowTime();
_this.initClock();
_this.InterVal();
}
init();
}
Clock.prototype.$ = function (id) {
return document.getElementById(id)
}
Clock.prototype.CreateKeDu = function (className, deg, translateWidth) {
var Pointer = document.createElement(“div”);
Pointer.className = className
Pointer.style.transform = “rotate(” + deg + “deg) translate(” + translateWidth + “px)”;
this.main.appendChild(Pointer);
}
Clock.prototype.getNowTime = fu免费云主机、域名nction () {
var now = new Date();
this.nowHour = now.getHours();
this.nowMinute = now.getMinutes();
this.nowSecond = now.getSeconds();
}
Clock.prototype.setPosition = function () {
this.second.style.transform = “rotate(” + (this.nowSecond * 6 – 90) + “deg)”;
this.minute.style.transform = “rotate(” + (this.nowMinute * 6 + 1 / 10 * this.nowSecond – 90) + “deg)”;
this.hour.style.transform = “rotate(” + (this.nowHour * 30 + 1 / 2 * this.nowMinute + 1 / 120 * this.nowSecond – 90) + “deg)”;
}
Clock.prototype.initClock = function () {
//初始化timeLabel
this.timeLabel.innerHTML = this.nowHour + “:” + this.nowMinute + “:” + this.nowSecond;
//初始化表盘
for (var index = 0; index this.CreateKeDu(“hourPointer”, index * 90, 138);
}
for (var index = 0; index this.CreateKeDu(“minuterPointer”, index * 30, 140);
}
for (var index = 0; index this.CreateKeDu(“secondPointer”, index * 6, 142);
}
this.setPosition();
}
Clock.prototype.InterVal = function () {
clearInterval(this.timer);
var _this = this;
this.timer = setInterval(function () {
_this.getNowTime();
_this.second.style.transform = “rotate(” + (_this.nowSecond * 6 – 90) + “deg)”;
_this.minute.style.transform = “rotate(” + (_this.nowMinute * 6 + 1 / 10 * _this.nowSecond – 90) + “deg)”;
_this.hour.style.transform = “rotate(” + (_this.nowHour * 30 + 1 / 2 * _this.nowMinute + 1 / 120 * _this.nowSecond – 90) + “deg)”;
_this.timeLabel.innerHTML = _this.nowHour + “:” + _this.nowMinute + “:” + _this.nowSecond;
}, 1000);
}最后调用如下:复制代码代码如下:
window.onload = function () {
new Clock();
}最终页面代码:复制代码代码如下:

http://www.w3.org/1999/xhtml”>
以上是“如何使用CSS3+js实现简单的时钟特效”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注云技术行业资讯频道!

相关推荐: odoo怎么通过actions.client进行自定义页面

本文小编为大家详细介绍“odoo怎么通过actions.client进行自定义页面”,内容详细,步骤清晰,细节处理妥当,希望这篇“odoo怎么通过actions.client进行自定义页面”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧…

文章页内容下
赞(0) 打赏
版权声明:本站采用知识共享、学习交流,不允许用于商业用途;文章由发布者自行承担一切责任,与本站无关。
文章页正文下
文章页评论上

云服务器、web空间可免费试用

宝塔面板主机、支持php,mysql等,SSL部署;安全高速企业专供99.999%稳定,另有高防主机、不限制内容等类型,具体可咨询QQ:360163164,Tel同微信:18905205712

主机选购导航云服务器试用

登录

找回密码

注册