おそらく、何もしないカスタム アニメーションを追加できます。このページを参照してください。
したがって、アニメーションが必要ない場合は、次のようなものが必要になる場合があります (つまり、@webkit-keyframes を除外します):
<script>
$(function(){
jQT.addAnimation({
name: 'noanimate',
selector: '.noanimate'
});
});
</script>
<style>
.noanimate.in {
-webkit-animation-name: dontmove;
z-index: 0;
}
.noanimate.out {
-webkit-animation-name: noanimateout;
z-index: 10;
}
.noanimate.out.reverse {
z-index: 0;
-webkit-animation-name: dontmove;
}
.noanimate.in.reverse {
z-index: 10;
-webkit-animation-name: noanimatein;
}
</style>