我有一组代码,通过操纵BackgroundPosition来动画容器的背景图像。
我不能为我的生活弄清楚如何将Y位置保持在0px,因为我当前的代码默认为%50。 (意思是我得到背景位置:AnimatedValue,%50;)
Animate: function (target) {
$('#wrapper').animate({ backgroundPosition: (((width / 10) * -1) * targetIndex) }, currentDuration, easing);
},
我需要改变什么?