*{margin:0; padding:0; list-style:none;}
.box{
width: 420px;
height: 420px;
margin: 50px auto 0;
}
#cvs{
background: #B1A6BE;
}
var cvs=document.getElementById('cvs');
var ctx=cvs.getContext('2d');
clock();
setInterval(clock,1000);
function clock(){
var img=document.createElement('img');
img.src='01.jpg';
//时钟背景图
// img.οnlοad=function (){
ctx.beginPath();
ctx.drawImage(img,0,0,420,420);
ctx.closePath();
// }
//时钟外圆
ctx.beginPath();
ctx.arc(210,210,200,0,2*Math.PI,true);
ctx.strokeStyle='#60D9F8';
ctx.lineWidth=10;
ctx.stroke();
ctx.clip();
ctx.closePath();
//分刻度 360/60=6
for (var i = 0; i < 60; i++) {
ctx.save();//保存状态
ctx.beginPath();
ctx.translate(210,210);
ctx.rotate(i*6*Math.PI/180);
ctx.strokeStyle='#FEF319';
ctx.lineWidth=5;
ctx.moveTo(0,-185);
ctx.lineTo(0,-195);
ctx.stroke();
ctx.closePath();
ctx.restore();//恢复之前保存的状态
};
//时刻度 360/12=30
for (var i = 0; i < 12; i++) {
ctx.save();//保存状态
ctx.beginPath();
ctx.translate(210,210);
ctx.rotate(i*30*Math.PI/180);
ctx.strokeStyle='#60D9F8';
ctx.lineWidth=8;
ctx.moveTo(0,-175);
ctx.lineTo(0,-195);
ctx.stroke();
ctx.closePath();
ctx.restore();//恢复之前保存的状态
};
//获取当前时间
var dates=new Date();
var h=dates.getHours();
var m=dates.getMinutes();
var s=dates.getSeconds();
h=h+m/60;//12.5小时
m=m+s/60;
//画时间
var h2=dates.getHours();
var m2=dates.getMinutes();
var str1=h2>9?h2:'0'+h2;
var str2=m2>9?m2:'0'+m2;
var str=str1+':'+str2;// 09:05
ctx.beginPath();
ctx.font='26px 微软雅黑';
ctx.fillStyle='#5BDA40';
ctx.fillText(str,180,340);
ctx.closePath();
//时针
ctx.save();//保存状态
ctx.beginPath();
ctx.translate(210,210);
ctx.rotate(h*30*Math.PI/180);
ctx.strokeStyle='#60D9F8';
ctx.lineWidth=8;
ctx.moveTo(0,14);
ctx.lineTo(0,-130);
ctx.stroke();
ctx.closePath();
ctx.restore();//恢复之前保存的状态
//分针
ctx.save();//保存状态
ctx.beginPath();
ctx.translate(210,210);
ctx.rotate(m*6*Math.PI/180);
ctx.strokeStyle='#FEF319';
ctx.lineWidth=5;
ctx.moveTo(0,14);
ctx.lineTo(0,-150);
ctx.stroke();
ctx.closePath();
ctx.restore();//恢复之前保存的状态
//秒针
ctx.save();//保存状态
ctx.beginPath();
ctx.translate(210,210);
ctx.rotate(s*6*Math.PI/180);
ctx.strokeStyle='#FB1F11';
ctx.lineWidth=3;
ctx.moveTo(0,14);
ctx.lineTo(0,-170);
ctx.stroke();
ctx.closePath();
//秒针上的圆
ctx.beginPath();
ctx.fillStyle='#FEF319';
ctx.strokeStyle='#FB1F11';
ctx.lineWidth=3;
ctx.arc(0,-155,5,0,2*Math.PI,true);
ctx.fill();
ctx.stroke();
ctx.closePath();
//中心圆
ctx.beginPath();
ctx.fillStyle='#FEF319';
ctx.strokeStyle='#FB1F11';
ctx.lineWidth=3;
ctx.arc(0,0,8,0,2*Math.PI,true);
ctx.fill();
ctx.stroke();
ctx.closePath();
ctx.restore();//恢复之前保存的状态
}
android 自定义obsever Android 自定义背景画面时钟
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
SpringBoot自定义starter
SpringBoot自定义starter
spring maven ci -
Android 自定义ListView背景
在Android中,ListView是最常用的一个控件,在做UI设计的时候,很多人希望能够
移动开发 ui android UI 控件