1
我想添加動畫引導模態使用animate.less庫。Twitter引導模態動畫關閉
當顯示模態時,動畫完全工作。但是在隱藏模式時,動畫不起作用。我創建了一個jsfiddle來複制它。
<a href="#" role="button" class="letclick btn btn-warning" id='loginLink' targetLink="login">
<i class="icon-user icon-white"></i>
Sign In
</a>
<div class="modal hide login-modal animated bounceOutRight" tabindex="-1" aria-labelledby="LoginModal" aria-hidden="true" id="login" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Login</h3>
</div>
<div class="modal-body">
SHOWING
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
JS
$('#loginLink').click(function(){
$('#login').modal({
backdrop: true,
keyboard: true
}).css({
'width': function() {
return (350) + 'px';
},
'margin-left': function() {
return -($(this).width()/2);
}
});
$('#login').toggleClass('bounceInLeft bounceOutRight')
});
$('#login').on('hide', function(){
$(this).toggleClass('bounceOutRight bounceInLeft');
});
bounceOutRight和bounceInLeft是否正常工作,並通過圖書館animate.less提供基於CSS動畫
我相信我不是正確調用隱藏,也許hide在動畫之前會放入隱藏的類。林不知道,任何幫助將是偉大的。
JS提琴鏈接:http://jsfiddle.net/W6G4q/1/
它掛在第一時間之後。它再次被調用時遞歸。但那個超時的事情確實有幫助。謝謝 – mayankbatra 2013-03-12 13:37:35
只是要指出,必須在if語句中包含removeclass和settimeout行。 – mayankbatra 2013-03-13 03:55:01