我正在设计一个开源 jQuery 框架并且遇到了 jQuery 动画的问题我需要为一组 div 设置动画,这些 div 在他们的 CSS 中被分配
-webkit-transform-origin: 100% 100% 0;
-webkit-transform: scale(.5);
transform-origin:100% 100% 0;
transform: scale(.5);
但是当我第一次在它们的 scale 属性上运行 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(... 为了它不会在第一次跳转到缩放数量。但这与我的框架逻辑不符有什么建议吗?