css+js实现数字上下滚动式数字时钟效果代码
代码语言:html
所属分类:布局界面
代码描述:css+js实现数字上下滚动式数字时钟效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap');
:root {
--base: 0;
--seconds: 0;
--minutes: 0;
--hours: 0;
--h: 75px;
}
body {
background-color: #222222;
height: 100vh;
display: grid;
place-items: center;
overflow: hidden;
}
main {
height: 75px;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 5px;
}
main:after {
content: '';
position: absolute;
z-index: 3;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: linear-gradient(180deg, rgba(0,0,0,0.9) 44%, rgba(0,0,0,0) 48%, rgba(0,0,0,0) 53%, rgba(0,0,0,0.9) 57%);
}
ul {
display: flex;
flex-direction: column-reverse;
gap: 5px;
list-style: none;
margin: 0;
padding: 0;
}
ul > li {
font-family: "MuseoModerno", sans-serif;
font-weight: 900;
font-size: 72px;
height: 70px;
width: 70px;
background-color: #444;
color: #fff600;
display: flex;
align-items: center;
justify-content: center;
}
span {
font-family: "MuseoModerno".........完整代码请登录后点击上方下载按钮下载查看
网友评论0