您当前位置:首页 > 文章中心 > HTML5+CSS3

html5时钟动画

稿件来源: 阳光企业网站管理系统   撰稿作者: 太阳光   发表日期: 2012-03-29   阅读次数: 270   查看权限: 游客查看

以前制作时钟至多是使用flash制作。如果纯html时钟也不再是神话啦。

浏览效果:点击查看  注意请使用支持html5的浏览器查看,如Firefox;chrome;safari等,IE8以下就免谈了。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>css3时钟</title>
</head>
<style type="text/css">
body{
	font-size:12px;
	margin:0;
	text-align:center;
}
#clock {
    background: url("images/clockface.png") no-repeat 0 0;
    height: 256px;
	width: 256px;
    list-style: none;
    margin: 0 auto;
    position: relative;    
}
#sec, #min, #hour {
    height: 256px;
    left: 122px;
    position: absolute;
    top: 0;
    width: 12px;
}
#sec {background: url("images/sechand.png") repeat scroll center center transparent}
#min {background: url("images/minhand.png") repeat scroll center center transparent}
#hour {background: url("images/hourhand.png") repeat scroll center center transparent}
</style>
<body>
<ul id="clock">
	<li id="sec"></li>
	<li id="hour"></li>
	<li id="min"></li>
</ul>
<script type="text/javascript">
//查出本浏览器使用的CSS属性
var props = 'transform WebkitTransform MozTransform OTransform msTransform'.split(' '),
prop,el = document.createElement('div');
for(var i = 0, l = props.length; i < l; i++) {
	if(typeof el.style[props[i]] !== "undefined") {
		prop = props[i]+"";
		break;
	}
}
function clock(){
	var date=new Date();
	var h=date.getHours();
	var m=date.getMinutes();
	var s=date.getSeconds();
	var srotate = "rotate(" + (h*30+m/2) + "deg)";
	document.getElementById("hour").style[prop]=srotate;
	srotate = "rotate(" + m*6 + "deg)";
	document.getElementById("min").style[prop]=srotate;
	srotate = "rotate(" + s*6 + "deg)";
	document.getElementById("sec").style[prop]=srotate;
}
(function() {
	clock();//先运行一下,以防指针抖动感觉
	setInterval("clock()",1000);
})();
</script>
</body>
</html>

=====================================这是一条美丽的分割线=====================================

在制作FLASH时钟时我们还可以考虑把毫秒数添加进入使秒指针呈不断转动效果,不过定时器也会增加,相对耗资源(不过你是感觉不到的),我们的html5时钟也是类似原理。

//在上面代码的基础上,关键代码:
//为0的时候同时计算毫秒,使秒指针不断的在转
	var ms=new Date().getMilliseconds();
	srotate = "rotate(" +(s*6+parseInt(ms/166))+ "deg)";

效果:狠狠点击查看 (注意请使用支持html5的浏览器查看,如Firefox;chrome;safari等,IE8以下就免谈了)

关键词: html5,css动画   编辑时间: 2012-04-01

  • 感到高兴

    0

    高兴
  • 感到支持

    0

    支持
  • 感到搞笑

    0

    搞笑
  • 感到不解

    0

    不解
  • 感到谎言

    0

    谎言
  • 感到枪稿

    0

    枪稿
  • 感到震惊

    0

    震惊
  • 感到无奈

    0

    无奈
  • 感到无聊

    1

    无聊
  • 感到反对

    0

    反对
  • 感到愤怒

    0

    愤怒
0%(0)
0%(0)
上一篇:TAB标签选项卡
下一篇:纯css3时钟动画
共有0 条评论 发言请遵守【相关规定

网友评论

会员头像
发 表同步腾讯微博    验证码:  点击更新请先登陆
  • 暂无评论
关闭模块文章图片 article Pictrue
  • 我的妈妈爸爸
  • 基于koa2+mysql+vue2.0+Element阳光内容管理系统
  • 代码覆盖率工具 Istanbul 入门教程
  • 全栈工程师的武器——MEAN
  • 9款超炫的 CSS3 复选框(Checkbox)
  • 微信开发在线翻译功能
  • CSS3那些不为人知的高级属性
  • 给easyui的datebox添加清空事件
  • flash写字效果
  • kendoUI系列教程之DropDownList下拉菜单
  • kendoUI系列教程之datetimepicker日期时间选择
  • kendoUI系列教程之datepicker日期选择
  • kendoUI系列教程之combobox下拉列表框
  • kendoUI系列教程之colorpicker
  • kendoUI系列教程之calendar日历表
  • kendoUI系列教程之autocomplete自动补齐