复制代码代码如下: $('#msg').hide(0).html('Click the car to run away').fadeIn(200); $('#car').show().addClass('fadeInRightBig').delay(1200).queue(function(next){ $(this).removeClass('fadeInRightBig'); next(); $(this).addClass('wobble'); }); var timer = window.setTimeout(function(){ $('#bridge').addClass('hinge'); $('#msg').hide().html('Oops, You are dead man! <div><a href="index.html">try it again?</a></div>').css({color:'red'}).fadeIn(); }, 5000 ); $('#car').click(function(){ clearTimeout(timer); $(this).delay(800).addClass('lightSpeedOut').queue(function(next){ $(this).removeClass(''); next(); $('#bridge').addClass('hinge').delay(2200).queue(function(next){ next(); }); }); $('#msg').hide().html('Congratulaions! Fast enough!').css({color:'green'}).fadeIn(); });