当前位置: 编程技术>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();
});
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。