您现在的位置是:网站首页> 软件下载软件下载
jCountr基于jquery的倒计时插件 下载-
2021-09-04
175人已围观
简介 jCountr基于jquery的倒计时插件 下载-
jquery 倒计时插件和实例,jCountr——运用了jQuery.Countdown.js,结合 jquery.js而完成的倒计时效果,用法请看代码,不是太复杂。
[code]
jQuery.fn.countdown = function(options) {
/**
* app init
*/
if(!options) options = '()';
if(jQuery(this).length == 0) return false;
var obj = this;
/**
* break out and execute callback (if any)
*/
if(options.seconds < 0 || options.seconds == 'undefined')
{
if(options.callback) eval(options.callback);
return null;
}
/**
* recursive countdown
*/
window.setTimeout(
function() {
jQuery(obj).html(String(options.seconds));
--options.seconds;
jQuery(obj).countdown(options);
}
, 1000
);
/**
* return null
*/
return this;
}
[/code]
[code]
jQuery.fn.countdown = function(options) {
/**
* app init
*/
if(!options) options = '()';
if(jQuery(this).length == 0) return false;
var obj = this;
/**
* break out and execute callback (if any)
*/
if(options.seconds < 0 || options.seconds == 'undefined')
{
if(options.callback) eval(options.callback);
return null;
}
/**
* recursive countdown
*/
window.setTimeout(
function() {
jQuery(obj).html(String(options.seconds));
--options.seconds;
jQuery(obj).countdown(options);
}
, 1000
);
/**
* return null
*/
return this;
}
[/code]
点击排行
- FLAC转MP3转换器(flac格式转换器) V4.0.5 绿色特别版 下载-
- Youtube音乐下载转换工具 V1.10 无限制特别版 下载-
- RMVB转换器(万能视频转换制作) v2.2 绿色特别版 下载-
- Joy Play媒体音乐播放器 V0.3.3.3 汉化绿色版 下载-
- 腾讯视频去广告工具 1.0 中文绿色免费版 下载-
- 刷视频人气 白云视频刷子下载 v2.0 绿色版(支持土豆、新浪、腾讯) 下载-
- Manycam(摄像头视频特效) V5.4.1 中文官方安装版 下载-
- 免费开源音乐播放器下载 Tuniac(foobar2000样式音乐播放器) 1.0.161003 官方安装版 下载-



