Fetch the repository succeeded.
This action will force synchronization from httishere/Notion, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
<!--
* @Author: httishere
* @Date: 2021-08-19 10:45:40
* @LastEditTime: 2022-01-08 19:18:33
* @LastEditors: Please set LastEditors
* @Description: 简易倒数日组件
* @FilePath: /notion/days-matter.html
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Days Matter</title>
<script src="./lib/global.js?v=20221106"></script>
<style>
body, html { background-color: #ffffff; margin: 0; padding: 0; }
.container { height: 100vh;}
.days-box {width: 300px; margin: 0 auto; border-radius: 10px; border: 1px solid #333333; overflow: hidden; background-color: #ffffff;}
.head {width: 100%; height: 50px; text-align: center; background-color: #333333; color: #ffffff; font-size: 18px; line-height: 50px;}
.content {width: 100%; height:120px; font-size:72px; color: #333333; font-weight: bold; font-family: monospace; text-align: center;line-height: 120px; border-bottom: 1px dashed #eeeeee;}
.bottom {background-color:#f9f9f9; color: #999999; text-align: center; height: 40px; line-height: 40px; font-size:14px;}
html[theme="dark"], html[theme="dark"] body {background-color:#191919; }
html[theme="dark"] .head{background-color:rgba(75, 154, 195, .7);}
</style>
</head>
<body>
<div class="container">
<div class="days-box">
<div class="head" id="title"></div>
<div class="content" id="number"></div>
<div class="bottom" id="date"></div>
</div>
</div>
</body>
<script>
var week = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ];
var week_ZN = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六', ];
window.onload = function() {
let target_day = getQueryString('day'), name = getQueryString('name');
let _now = new Date().getTime(), _target = new Date(target_day).getTime();
// 设置项目名
name = _target > _now ? `${name}还有` : `${name}已经`;
document.getElementById('title').innerHTML = name;
// 设置时间
let times = Math.abs(_target - _now);
let d_days = Math.ceil(times / 1000 / 60 / 60 / 24);
document.getElementById('number').innerHTML = d_days;
let _date = new Date(target_day).getDay();
target_day = target_day.split('/').join('-');
let text = _target > _now ? '目标日' : '起始日';
document.getElementById('date').innerHTML = `${text}:${target_day} ${week_ZN[_date]}`;
}
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。