js+css实现弹性浮雕电子时钟效果代码

代码语言:html

所属分类:其他

代码描述:js+css实现一个数字弹性变换并有浮雕效果的电子时钟代码

代码标签: 弹性 浮雕 时钟

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
  
  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&amp;display=swap'>
  
<style>
* {
	border: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--hue: 223;
	--bg: hsl(var(--hue),10%,90%);
	--fg: hsl(var(--hue),10%,10%);
	--primary: hsl(var(--hue),90%,55%);
	--shadow: hsl(var(--hue),90%,35%);
	font-size: calc(20px + (40 - 20) * (100vw - 320px) / (1280 - 320));
}
body {
	background: var(--bg);
	color: var(--fg);
	font: 1em/1.5 Spartan, sans-serif;
	height: 100vh;
	display: grid;
	place-items: center;
}
.clock {
	background-color: var(--primary);
	background-image: linear-gradient(-45deg,hsla(var(--hue),10%,10%,0),hsla(var(--hue),10%,10%,0.2));
	border-radius: 0.25rem;
	box-shadow: 0 0 0 0.1rem hsla(var(--hue),10%,10%,0.2) inset;
	color: hsl(var(--hue),10%,100%);
	display: flex;
	justify-content: center;
	font-size: 2em;
	line-height: 1;
	padding: 0.25rem 0.5rem;
}
.clock__digit {
	display: inline-block;
	font-weight: bold;
	text-align: center;
	text-shadow:
		0 0 0 var(--shadow),
		0 0 0 var(--shadow),
		1px 1px 0 var(--shadow),
		2px 2px 0 var(--shadow),
		3px 3px 0 var(--shadow),
		3px 3px 0 var(--shadow),
		4px 4px 0 var(--shadow);
	width: 1ch;
}
.clock__digit:not(:nth-child(3n)) {
	margin-top: 0.25rem;
}
.clock__digit--bounce {
	animation: bounce 0.5s ease-in;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue),10%,10%);
		--fg: hsl(var(--hue),10%,90%);
	}
}

/* Animations */
@keyframes bounce {
	from, to {
		animation-timing-function: ease-in;
		text-shadow:
			0 0 0 var(--shadow),
			0 0 0 var(--shadow),
			1px 1px 0 var(--shadow),
			2px 2px 0 var(--shadow),
			3px 3px 0 var(--shadow),
			3px 3px 0 var(--shadow),
			4px 4px 0 var(--shadow);
		transform: translate(0,0);
	}
	33% {
		animation-timing-function: ease-out;
		text-shadow:
			0 0 0 var(--shadow),
			0 0 0 var(--shadow),
			0 0 0 var(--shadow),
			0 0 0 var(--shadow),
			0 0 0 var(--shadow),
			1px 1px 0 var(--shadow);
		transform: translate(4px,4px);
	}
	67% {
		animation-timing-function: ease-in;
		text-shadow:
			1px 1px 0 var(--shadow),
			2px 2px 0 var(--shadow),
			3px 3px 0 var(--shadow),
			4px 4px 0 var(--shadow),
			5px 5px 0 var(--shadow),
			6px 6px 0 var(--shadow);
		transform: translate(-2px,-2px);
	}
}
</style>



</head>

<body>
  <div class="clock">
	<span class="clock__digit">0</span>
	<span class="clock__digit">0</span>
	<span class="clock__digit">:</span>
	<span class="clock__digit">0</span>
	<span class="clock__digit">0</span>
	<span class="clock__digit&quo.........完整代码请登录后点击上方下载按钮下载查看

网友评论0