Template:Clock/style.css
跳到导航
跳到搜索
/** 时钟 **/
@keyframes 鬼影clock {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.鬼影clocksecondtick {
animation: 鬼影clock 60s steps(60) infinite;
}
.鬼影clocksecond {
animation: 鬼影clock 60s linear infinite;
}
.鬼影clockminute {
animation: 鬼影clock 3600s linear infinite;
}
.鬼影clockhour {
animation: 鬼影clock 43200s linear infinite;
}