1 Star 0 Fork 1

HUB2EE/前端开发经验迭代ing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
天时分秒倒计时.html 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
子龙 提交于 2021-08-03 17:17 . plplpo
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>JS实现倒计时(天数,时,分,秒)</title>
</head>
<body>
<h2>剩余时间:</h2>
<div id="timer"></div>
<script language="javascript" type="text/javascript">
timer('2021-11-20 12:00:00', 'day')
/**
* 入参第一个为时间字符串,第二个参数为模式选择,如果传入'day',按天数倒计时到秒,不传值,按小时精确到秒
* @param timeStr
* @param item
*/
function timer(timeStr, item) {
setInterval(function () {
let nowTime = new Date(timeStr) - new Date()
let minutes = parseInt((nowTime / 1000 / 60) % 60, 10) //计算剩余的分钟
let seconds = parseInt((nowTime / 1000) % 60, 10) //计算剩余的秒数
minutes = checkTime(minutes)
seconds = checkTime(seconds)
if (item === 'day') {
let days = parseInt(nowTime / 1000 / 60 / 60 / 24, 10) //计算剩余的天数
let hours = parseInt((nowTime / 1000 / 60 / 60) % 24, 10) //计算剩余的小时
days = checkTime(days)
hours = checkTime(hours)
document.getElementById('timer').innerHTML =
days + '' + hours + '小时' + minutes + '' + seconds + ''
} else {
let hours = parseInt(nowTime / (1000 * 60 * 60), 10) //计算剩余的小时
hours = checkTime(hours)
document.getElementById('timer').innerHTML =
hours + '小时' + minutes + '' + seconds + ''
}
}, 1000)
}
function checkTime(i) {
//将0-9的数字前面加上0,例1变为01
if (i < 10) {
i = '0' + i
}
return i
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/since2020/some_tips_of_css_js.git
git@gitee.com:since2020/some_tips_of_css_js.git
since2020
some_tips_of_css_js
前端开发经验迭代ing
master

搜索帮助