본문 바로가기

World Wide Web/jquery

다른 페이지로 벗어날때 인터벌 정지시키기

다른 페이지를 보거나, 창을 최소화 시킬때 인터벌을 정지시켜 성능을 향상

1
2
3
4
5
jQuery(window).blur(function(){
 
    clearInterval(vInterval);
 
})
cs


포커스가 현재 창으로 되돌아올때 인터벌 다시 재생

1
2
3
4
5
6
7
jQuery(window).focus(function(){
 
    clearInterval(vInterval);
 
    vInterval = setInterval("visual()", vTime);
 
})
cs