当前位置: 编程技术>jquery
jQuery定时器插件 jQuery Timers应用示例
来源: 互联网 发布时间:2014-09-03
本文导语: jQuery Timers 是一个用来封装 setTimeout 和 setInterval 方法的 jQuery 定时器插件。 下载地直:http://plugins.jquery.com/project/timers 可用在网页顶部,以拉帘效果,出现广告图,图片的DIV id=noticepage,调用示例: $("#noticepage").oneTime(1000,func...
jQuery Timers 是一个用来封装 setTimeout 和 setInterval 方法的 jQuery 定时器插件。
下载地直:http://plugins.jquery.com/project/timers
可用在网页顶部,以拉帘效果,出现广告图,图片的DIV id=noticepage,调用示例:
$("#noticepage").oneTime(1000,function(){
$(this).slideDown();
});
$(this).slideDown();
});
下面举一个小例子,供大家参考。
代码如下:
代码示例:
/**
* jQuery Timers应用示例
* edit www.
*/
$("#close-button").click(function() {
$(this).oneTime(1000, function() {
$(this).parent(".main-window").hide();
});
});
$("#cancel-button").click(function() {
$("#close-button").stopTime();
});
* jQuery Timers应用示例
* edit www.
*/
$("#close-button").click(function() {
$(this).oneTime(1000, function() {
$(this).parent(".main-window").hide();
});
});
$("#cancel-button").click(function() {
$("#close-button").stopTime();
});