How to pause and restart a css3 transition in jquery transit
问题 I'm using jquery transit to move and element. I want to pause the animation and continue it on click of a button. But i'm unable to figure out how to do it. JSFiddle : http://jsfiddle.net/b4hwq/2/ I did try stop().transition({}); but it is throwing an error. 回答1: You were most of the way there with .stop() I just added a little logic to tell it what to do when it stops. Working Example $('button').click(function () { if (!$('.box').hasClass('stop')) { // if the box does not have class "stop"