css+js实现数字日期时间显示效果代码

代码语言:html

所属分类:布局界面

代码描述:css+js实现数字日期时间显示效果代码

代码标签: css 数字 时间 日期

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">



    <style>
        @import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
        body {
        	background-color: black;
        }
        h1,
        div {
        	font-size: 40px;
        	font-family: "Orbitron", monospace;
        	text-align: center;
        	height: 200px;
        	width: 400px;
        	position: fixed;
        	top: 50%;
        	left: 50%;
        	color: #b7f1b6;
        	text-shadow: 0 0 8px #b7f1b6;
        }
        #dates {
        	margin-top: -65px;
        	margin-left: -200px;
        }
        #time {
        	margin-top: -5px;
        	margin-left: -200px;
        }
        div {
        	border: 3px solid #b7f1b6;
        	box-shadow: 0 0 15px #b7f1b6, inset 0px 0px 15px #b7f1b6;
        	border-radius: 20px;
        	height: 200px;
        	margin-left: -200px;
        	margin-top: -110px;
        }
    </style>


</head>

<body>
    <div id="container">
        <h1 id="dates"></h1>
        <h1 id="time"></h1>
    </div>


    <script>
        var printDate = function () {
    .........完整代码请登录后点击上方下载按钮下载查看

网友评论0