注册 登录 充值会员 退出
网站、APP、小程序等定制开发,联系QQ 1206995177 毕业设计 java源码 PHP源码
充值

jQuery创意网站建设中即将开放倒计时代码

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2024-04-10
jQuery创意网站建设中即将开放倒计时代码
jQuery创意网站建设中即将开放倒计时代码,你也可以调整一下用到别的地方,网页倒计时效果还是比较常用的。


js代码

<script type="text/javascript" src="js/jquery-1.3.2.js"></script> 
<script type="text/javascript" src="js/jquery.countdown.js"></script> 
<script type="text/javascript" src="js/DD_belated.js"></script> <!--IE6 png图片处理-->
<script type="text/javascript">
$(function () {
	$('#defaultCountdown').countdown({
		since: new Date(2018, 7-1, 20, 0, 0, 0 ),// change this date to match yours, format is year, month-1, day, hour(24), min, sec
		format: 'ODHMS'
	});
});
</script>