次のタイプのcssアニメーションのクラスがあります
.cssanimation {
-webkit-transition: 0.2s all ease-in-out
-o-transition: 0.2s all ease-in-out
-moz-transition: 0.2s all ease-in-out
transition: 0.2s all ease-in-out
.. some other changes in position
}
私はdivを持っています
<div id="thediv"> ... </div>
$('#thediv').addClass('cssanimation') //animates the object
私はある時点でこのアニメーションを使用しますが、アニメーションを呼び出さずに追加したい場合があります
Jqueryには、cssアニメーションを呼び出さずにクラスを追加できる方法がありますか?