一个使用svg做的动态时钟,供大家参考,具体内容如下
怎么样很酷吧,以下是源码:
<!DOCTYPE html>
<html>
<title>SVG clock</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link rel="stylesheet" href="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="external nofollow" >
<!-- <link rel="stylesheet" type="text/css" href="canvas.css" rel="external nofollow" media="all" />-->
<style type="text/css">
#clock {
stroke: #adcd3c;
stroke-linecap: round;
fill: #f2fddb;
}
#face {
stroke-width: 3px;
}
#ticks {
stroke-width: 2px;
}
#hands line {
stroke-linejoin: bevel;
}
#hourhand {
stroke-width: 4px;
}
#minutehand {
stroke-width: 3px;
}
#numbers {
font-size: 16px;
text-anchor: middle;
stroke: none;
fill: #92b0dd;
}
</style>
<script type="text/javascript">
function updateTime() {
var now = new Date();
var second = now.getSeconds();
var min = now.getMinutes();
var hour = (now.getHours() % 12) + min / 60;
var secondangle = second * 6; //6 degrees for every minute
var minangle = min * 6; //6 degrees for every minute
var hourangle = hour * 30; //30 degrees for every hour
var minhand = document.getElementById('minutehand');
var hourhand = document.getElementById('hourhand');
var secondhand = document.getElementById('secondhand');
var shadhand = document.getElementById("shadow");
var clocks = document.getElementById("clock");
if(second%2==0){
//alert(clocks);
clocks.style.stroke="#adcd3c";
}else{
//alert(secondangle);
clocks.style.stroke="#ad223c";
}
minhand.setAttribute('transform', 'rotate(' + minangle + ', 50, 50)');
hourhand.setAttribute('transform', 'rotate(' + hourangle + ', 50, 50)');
secondhand.setAttribute('transform', 'rotate(' + secondangle + ', 50, 50)');
for (var i = shadhand.childElementCount - 1; i >= 0; i--) {
var chr = shadhand.children[i];
switch (chr.tagName)
{
case "feGaussianBlur":
/*if(secondangle/2)==1){
chr.setAttribute(dx=-1)
}else{
chr.setAttribute(dx=1)
}
alert(chr.tagName);*/
break;
case "feOffset":
if(second%2==0){
//alert(secondangle);
chr.setAttribute("dx","-3");
}else{
//alert(secondangle);
chr.setAttribute("dx","3");
}
//alert(chr.tagName);
break;
case "feMerge":
/*for (var i = 0; i < chr.childElementCount -1; i++) {
chr.children[i].
};*/
//alert(chr.tagName);
break;
default:
alert("could not found the Attribute");
}
};
setTimeout(updateTime, 1000); //update time for every second
}
</script>
<body onload="updateTime()">
<svg id="clock" viewBox="0 0 100 100" width="500" height="500">
<defs>
<!-- define an filter use to add shadow of some element -->
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur" />
<feOffset in="blur" dx="-1" dy="1" result="shadow" lighting-color = "#adcd3c"/>
<feMerge>
<feMergeNode in="SourceGraphic"/>
<feMergeNode in="shadow" />
</feMerge>
</filter>
</defs>
<!-- clock face -->
<circle id="face" cx="50" cy="50" r="45" />
<!-- mark time lines -->
<g id="ticks">
<line x1="50.00" y1="5.000" x2="50.00" y2="10.00" />
<line x1="72.50" y1="11.03" x2="70.00" y2="15.36" />
<line x1="88.97" y1="27.50" x2="84.64" y2="30.00" />
<line x1="95.00" y1="50.00" x2="90.00" y2="50.00" />
<line x1="88.97" y1="72.50" x2="84.64" y2="70.00" />
<line x1="72.50" y1="88.90" x2="70.00" y2="84.64" />
<line x1="50.00" y1="95.00" x2="50.00" y2="90.00" />
<line x1="27.50" y1="88.90" x2="30.00" y2="84.64" />
<line x1="11.03" y1="72.50" x2="15.36" y2="70.00" />
<line x1="5.000" y1="50.00" x2="10.00" y2="50.00" />
<line x1="11.03" y1="27.50" x2="15.36" y2="30.00" />
<line x1="27.50" y1="11.00" x2="30.00" y2="15.36" />
</g>
<!-- mark some important numbers -->
<g id="numbers">
<text x="50" y="20">12</text>
<text x="85" y="55">3</text>
<text x="50" y="88">6</text>
<text x="15" y="55">9</text>
</g>
<!-- show hands -->
<g id="hands" filter="url(#shadow)">
<line id="hourhand" x1="50" y1="50" x2="50" y2="24" />
<line id="minutehand" x1="50" y1="50" x2="50" y2="20" />
<line id="secondhand" x1="50" y1="50" x2="50" y2="16" />
</g>
</svg>
</body>
</html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
svg,时钟
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“使用svg实现动态时钟效果”评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2026年03月22日
2026年03月22日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]