World Wide Web/jquery
다른 페이지로 벗어날때 인터벌 정지시키기
인천매력쟁이
2014. 5. 7. 10:23
다른 페이지를 보거나, 창을 최소화 시킬때 인터벌을 정지시켜 성능을 향상
| jQuery(window).blur(function(){ clearInterval(vInterval); }) | cs |
포커스가 현재 창으로 되돌아올때 인터벌 다시 재생
| jQuery(window).focus(function(){ clearInterval(vInterval); vInterval = setInterval("visual()", vTime); }) | cs |