Namespace: jQuery

jQuery

Methods

pause()

Pauses the animation executed through a call to the jQuery .animate() method.

jQuery의animate() 메서드가 실행한 애니메이션을 일시 정지한다

Example

$("#box").pause(); //paused the current animation

resume()

Resumes the animation paused through a call to the pause() method.

pause() 메서드가 일시 정지한 애니메이션을 다시 실행한다

Example

$("#box").resume(); //resume the paused animation

comments powered by Disqus