01.纯CSS实现数字时钟

效果

源码

源码

<!doctype html>
<html>
	<head>
		<meta charset="utf-8">
		<title>Digital Clock</title>
		<link rel="stylesheet" href="style.css">
	</head>
	<body>
		<div id="time">
			<div class="circle" style="--clr:#ff2972">
				<div class="dots sec_dot"></div>
				<svg>
					<circle cx="120" cy="120" r="120" id="ss"></circle>
				</svg>
			</div>
			<div class="circle" style="--clr:#fee800">
				<div class="dots min_dot"></div>
				<svg>
					<circle cx="100" cy="100" r="100" id="mm"></ci

猜你喜欢

转载自blog.csdn.net/qq449245884/article/details/128457074
01.