jCountr基于jquery的倒计时插件 |
2021-01-21 22:47:52 35资源网(www.35d.net) |
jQuery |
下载本资源原文网址:http://www.daima.org/jQuery/jq16363.html 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] |
|
|
|
资源大全_资源下载网站:www.35d.net 本站资源仅限研究学习使用,如需商用请联系版权方, 本站事务联系QQ:939804642
|
|