다른 페이지를 보거나, 창을 최소화 시킬때 인터벌을 정지시켜 성능을 향상
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 |
'World Wide Web > jquery' 카테고리의 다른 글
jquery로 font-size, color를 animate 시켜보기 (1) | 2014.09.16 |
---|---|
[플러그인] 제이쿼리로 곡선 모션 표현하기 (0) | 2014.05.07 |
jquery로 css 백그라운드 이미지 변경 (2) | 2014.04.03 |
네방향 마우스 이벤트 (0) | 2014.02.11 |
jquery.color.js 사용법 (0) | 2014.01.15 |