オープン ソースの jQuery フレームワークを設計していますが、jQuery のアニメーションに問題があります。CSS で割り当てられている一連の div をアニメーション化する必要があります。
-webkit-transform-origin: 100% 100% 0;
-webkit-transform: scale(.5);
transform-origin:100% 100% 0;
transform: scale(.5);
しかし、スケール プロパティで初めて jQuery アニメーションを実行すると、スケーリングされた量に「ジャンプ」します。
> For those who use jQuery, im sure you noticed when you assign a
> selector to an animation and it begins to animate a property that
> wasn't assigned the first time it animates, it will add the target
> property and value, essentially jumping to the end result instantly,
> and then animate smoothly next time the animation is run on this item
JavaScriptファイルに物理的にアクセスして、次を追加する必要があります。
$("div").css({scale:.5, origin:'100% 100% 0'});
$(document).ready(... で、最初にスケーリングされた量にジャンプしないようにします。しかし、これは私のフレームワークロジックと一致しません 何か提案はありますか?