如何在jquery传输中暂停和重新启动css3转换

时间:2013-10-30 13:26:37

标签: javascript jquery css3 css-transitions jquery-transit

我正在使用jquery transit来移动和元素。我想暂停动画并单击按钮继续动画。但我无法弄清楚如何去做。

JSFiddle:http://jsfiddle.net/b4hwq/2/

我确实尝试了

stop().transition({});

但它正在抛出错误。

2 个答案:

答案 0 :(得分:2)

您可以使用clearQueue()停止动画

  

clearQueue():停止队列中的其余功能

jsFiddle here

<强> HTML

<div class="box"></div>
<button id="restartTransition">Click Me</button>

<强> CSS

.box{
    opacity: 0.8;
position: absolute;
left: 0;
top: 5%;
background: #505060;
border-radius: 1px;
box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
margin: -16px 0 0 -16px;
width: 32px;
height: 32px;
z-index: 2;
}

<强>的jQuery

$(document).ready(function(){
    $("#restartTransition").on("click", function(){
        $('.box').clearQueue().transition({ x: '0px' },10);
        $('.box').transition({ x: '350px' },5000);
    });
});

答案 1 :(得分:0)

你在.stop()的大部分路上我只是添加了一点逻辑来告诉它什么时候停止。

<强> Working Example

$('button').click(function () {
    if (!$('.box').hasClass('stop')) { // if the box does not have class "stop"
        $('.box').stop().transition({  // stop the transition
            x: $('.box').offset().left + $('.box').width() / 2  // where the box should be when it stops
        }, 1).addClass('stop'); // simple add class for easy button control  
    } else { // if the box has class "stop"
        $('.box').transition({
            x: '350px' 
        }, 5000).removeClass('stop'); // continue with regularly scheduled programming then remove "stop"
    }
});