Template:Clock/style.css

H萌娘,万物皆可H的百科全书!
< Template:Clock
imported>=海豚=2021年8月5日 (四) 19:44的版本 (创建页面,内容为“→‎* 时钟 *:​ @keyframes 鬼影clock { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .鬼影clocksecondtick { animation: 鬼影c…”
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索
/** 时钟 **/
@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;
}