1 Star 0 Fork 4

mikefeng/clock

forked from 花果山大圣/clock 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 3.46 KB
一键复制 编辑 原始数据 按行查看 历史
woniu 提交于 2021-07-05 06:38 +08:00 . init
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background: #0d1320;
overflow: hidden;
}
#timer{
text-align: center;
font-size:56vh;
line-height:56vh;
font-weight: bold;
color:#e2ecfd;
}
#date{
margin-top:0px;
text-align: center;
font-size:28vh;
line-height:28vh;
font-weight: bold;
color:#e2ecfd;
}
.about{
width:800px;
margin:0 auto;
padding-top:20px;
display: flex;
align-items : center;
}
.about .item{
color:white;
flex:1;
text-align: center;
}
#hug-sun img{
position: relative;
width:300px;
height:auto;;
}
</style>
</head>
<body>
<div class="about">
<div class="item">
<a target="_blank" href="https://juejin.im/user/1556564194370270">
<img style="height:40px;" src="./img/juejin.svg" alt="">
</a>
</div>
<div class="item">
<a target="_blank" href="https://space.bilibili.com/26995758">
<img style="height:35px;" src="./img/bili.svg" alt="">
</a>
</div>
<div class="item">
<a target="_blank" href="https://www.zhihu.com/people/woniuppp">
<img src="./img/zhihu.svg" alt="">
</a>
</div>
<div class="item">
<a target="_blank" href="https://github.com/shengxinjing">
<img style="height:20px;" src="./img/github.svg" alt="">
</a>
</div>
<div class="item" id="hug-sun">
<a target="_blank" href="https://space.bilibili.com/26995758">
<img src="./img/hugsun.bmp" alt="">
</a>
</div>
</div>
<div id="date">03月18日</div>
<div id="timer">05:47</div>
<script>
let showSymbl = true
function clock(){
let now = new Date()
let hour = now.getHours()+''
let minute = now.getMinutes() + ''
let month = (now.getMonth()+1)+''
let day = now.getDate()+''
console.log(now.getDate(),now.getDay())
let weeks = '日一二三四五六'.split('')
let week = weeks[now.getDay()]
if(showSymbl){
document.getElementById('timer').innerHTML = `${hour.padStart(2,'0')}<span>:</span>${minute.padStart(2,'0')}`
}else{
document.getElementById('timer').innerHTML = `${hour.padStart(2,'0')}<span style="color:#0d1320">:</span>${minute.padStart(2,'0')}`
}
document.getElementById('date').innerHTML = `${month.padStart(2,'0')}-${day.padStart(2,'0')}${week}`
showSymbl = !showSymbl
}
clock()
setInterval(()=>{
clock()
},1000)
</script>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?a8baaf55cb517a031547310e64e9ff39";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zf-harmony/clock.git
git@gitee.com:zf-harmony/clock.git
zf-harmony
clock
clock
master

搜索帮助