我是靠谱客的博主 贤惠皮皮虾,最近开发中收集的这篇文章主要介绍玩转简单版倒计时,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

直接上代码,可供参考:

<!DOCTYPE html>
<html>
 
	<head>
		<meta charset="utf-8" />
		<title>倒计时代码</title>
		<style type="text/css">
			* {
				margin: 0;
				padding: 0;
				font-family: "微软雅黑";
				font-size: 20px;
			}
			
			.time {
				overflow: hidden;
				margin: 100px auto;
				border: 1px solid blue;
				text-align: center;
				background: #3299CC;
				border-radius: 10px;
				padding: 20px;
				width: 530px;
			}
			
			.time h3 {
				font-size: 30px;
				text-align: center;
				padding-bottom: 30px;
				letter-spacing: 5px;
			}
			
			.time h3 input {
				border: none;
				width: 100px;
				height: 35px;
				text-align: center;
				border-radius: 8px;
				background: #f2f2f2;
			}
			
			.time .even,
			.time .odd {
				float: left;
				height: 50px;
				text-align: center;
				line-height: 50px;
				margin-right: 10px;
				border-radius: 8px;
			}
			
			.time .even {
				width: 35px;
				padding: 0 20px;
				background: #FF7F00;
				color: #ffffff;
			}
			
			.time .odd {
				width: 20px;
				padding: 0 10px;
				background: #ffffff;
			}
			
			#lastDiv {
				margin-right: 0;
			}
		</style>
	</head>
 
	<body>
		<div class="time">
			<h3>距离元旦还有:</h3>
			<div id="residueDays" class="even"></div>
			<div class="odd"></div>
			<div id="residueHours" class="even"></div>
			<div class="odd"></div>
			<div id="residueMinutes" class="even"></div>
			<div class="odd"></div>
			<div id="residueSeconds" class="even"></div>
			<div class="odd" id="lastDiv"></div>
		</div>
	</body>
 
</html>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
	function countDownTime() {
		// 倒计时截止时间
		var EndTime = new Date('2021/1/1 00:00:00');
		// 现在的时间
		var NowTime = new Date();
		// 时间差(时间单位:ms)
		var t = EndTime.getTime() - NowTime.getTime();
		var d = 0;
		var h = 0;
		var m = 0;
		var s = 0;
		if(t >= 0) {
			// 向下取整
			d = Math.floor(t / 1000 / 60 / 60 / 24);
			h = Math.floor(t / 1000 / 60 / 60 % 24);
			m = Math.floor(t / 1000 / 60 % 60);
			s = Math.floor(t / 1000 % 60);
		}
		// 如果是一位数,前面拼接"0"
		function toDouble(num) {
			return num < 10 ? '0' + num : num;
		}
		$("#residueDays").html(d);
		$("#residueHours").html(toDouble(h));
		$("#residueMinutes").html(toDouble(m));
		$("#residueSeconds").html(toDouble(s));
	}
	setInterval(countDownTime, 1000)
</script>

最后

以上就是贤惠皮皮虾为你收集整理的玩转简单版倒计时的全部内容,希望文章能够帮你解决玩转简单版倒计时所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部