任何人都可以解释为什么
$(''+this.get("rel")+'-arrow').tween("margin-top",-10);
工作和
$(''+this.get("rel")+'-arrow').tween("background-position","center -10px");
不起作用? 非常感谢:))
答案 0 :(得分:5)
所有动画方法都会为数字值设置动画,center
不是,实际上,您不应该使用center
,而是50%
。
document.getElement('div').tween('background-position', '50% 100px');