Home > Web Front-end > JS Tutorial > body text

jQuery timers simple application instructions_jquery

WBOY
Release: 2016-05-16 18:17:36
Original
1008 people have browsed it

Because of convenience, Jquery has encapsulated the setTimeout and setInterval methods of JS. Let’s take a look at the application example:

Copy the code The code is as follows:

/**
* jQuery.timers - Timer abstractions for jQuery
* Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
* Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
* Date: 2009/10/16
*
* @author Blair Mitchelmore
* @version 1.2
*
**/

jQuery.fn.extend({
everyTime: function(interval, label, fn, times) {
return this .each(function() {
jQuery.timer.add(this, interval, label, fn, times);
});
},
oneTime: function(interval, label, fn ) {
return this.each(function() {
jQuery.timer.add(this, interval, label, fn, 1);
});
},
stopTime: function(label, fn) {
return this.each(function() {
jQuery.timer.remove(this, label, fn);
});
}
}) ;

jQuery.extend({
timer: {
global: [],
guid: 1,
dataKey: "jQuery.timer",
regex: / ^([0-9] (?:.[0-9]*)?)s*(.*s)?$/,
powers: {
// Yeah this is major overkill...
'ms': 1,
'cs': 10,
'ds': 100,
's': 1000,
'das': 10000,
'hs ': 100000,
'ks': 1000000
},
timeParse: function(value) {
if (value == undefined || value == null)
return null;
var result = this.regex.exec(jQuery.trim(value.toString()));
if (result[2]) {
var num = parseFloat(result[1]);
var mult = this.powers[result[2]] || 1;
return num * mult;
} else {
return value;
}
},
add : function(element, interval, label, fn, times) {
var counter = 0;

if (jQuery.isFunction(label)) {
if (!times)
times = fn;
fn = label;
label = interval;
}

interval = jQuery.timer.timeParse(interval);

if (typeof interval != 'number' || isNaN(interval) || interval < 0)
return;

if (typeof times != 'number' || isNaN(times) || times < 0)
times = 0;

times = times || 0;

var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});

if (!timers[label])
timers[label] = {};

fn.timerID = fn.timerID || this.guid ;

var handler = function() {
if (( counter > times && times !== 0) || fn.call(element, counter) === false)
jQuery.timer. remove(element, label, fn);
};

handler.timerID = fn.timerID;

if (!timers[label][fn.timerID])
timers[label][fn.timerID] = window.setInterval(handler,interval);

this.global.push( element );

},
remove: function(element , label, fn) {
var timers = jQuery.data(element, this.dataKey), ret;

if ( timers ) {

if (!label) {
for ( label in timers )
this.remove(element, label, fn);
} else if ( timers[label] ) {
if ( fn ) {
if ( fn.timerID ) {
window.clearInterval(timers[label][fn.timerID]);
delete timers[label][fn.timerID];
}
} else {
for ( var fn in timers[label] ) {
window.clearInterval(timers[label][fn]);
delete timers[label][fn];
}
}

for ( ret in timers[label] ) break;
if ( !ret ) {
ret = null;
delete timers[label];
}
}

for ( ret in timers ) break;
if ( !ret )
jQuery.removeData(element, this.dataKey);
}
}
}
});

jQuery(window).bind("unload", function() {
jQuery.each(jQuery.timer.global, function(index, item) {
jQuery.timer.remove(item) ;
});
});

JS Code
Copy Code The code is as follows:

$("#close-button").click(function() {
$(this).oneTime(1000, function() {
$(this ).parent(".main-window").hide();
});
});
$("#cancel-button").click(function() {
$("#close-button").stopTime();
});

jQuery Timers plugin address:
http://plugins.jquery.com/ project/timers

The following JQuery Timers application knowledge from the JavaEye Forum

provides three functions
1. everyTime(time interval, [timer name], function formula name, [number limit], [wait for function program to complete])
2. oneTime (time interval, [timer name], function called)
3. stopTime ([timer name], [Function name])
Copy code The code is as follows:

/**************************************************** * *********
* EveryTime(시간 간격, [타이머 이름], 함수 이름, [횟수 제한], [함수 프로그램 완료 대기])
******** ************************************************** * *****/

//1초마다 function test() 실행
function test(){
//뭔가를 하세요...
}
$('body').everyTime('1s',test);

//1초마다 실행
$('body').everyTime('1s', function (){
//뭔가를 하세요...
})

//1초마다 실행하고 타이머 이름을 A
$('body')로 지정합니다. '1s','A',function(){
//뭔가를 하세요...
})

//20초마다 최대 5번 실행하고 타이머 이름을 지정합니다. 장치 이름은 B
$('body').everyTime('2das','B',function(){
//뭔가를 하세요...
},5);
//20초마다 무제한으로 실행하고 타이머 이름을 C로 지정합니다.
//시간 간격에 도달했지만 함수 프로그램이 완료되지 않은 경우 실행 함수가 완료될 때까지 기다려야 합니다. 시간을 계속하기 전에
$('body').everyTime('2das','C',function(){
//20초 이상 걸리는 프로그램 실행
},0, true);

/**************************************************** * *******
* oneTime(시간 간격, [타이머 이름], 호출되는 함수)
******************** ** **************************************/
//10초 카운트다운 후 실행
$('body').oneTime('1das',function(){
//뭔가를 하세요...
})

//카운트다운 100초 후에 실행하고 타이머 이름을 D
$('body').oneTime('1hs', 'D',function() {
//뭔가를 하세요...
})

/**************************************************** * ********
* stopTime ([타이머 이름], [함수 이름])
************************ ** ****************************************/
//$('에서 모든 타이머를 중지합니다. body')
$('body').stopTime ()

//$('body')
$('body').stopTime ('에서 A라는 타이머를 중지합니다. A' );

//$('body')
$('body').stopTime (test)

에서 test()를 호출하는 모든 타이머를 중지합니다. 사용자 정의 시간 단위
소스 코드 열기
찾기

코드 복사 코드는 다음과 같습니다.
powers: {
// 예, 이건 엄청난 과잉입니다...
'ms': 1,
'cs': 10,
'ds': 100,
': 1000,
'das': 10000,
'hs': 100000,
'ks': 1000000
}

사용자 정의할 수 있습니다. 당신이 원하는 것!
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template