背景位置上的补间不起作用

时间:2011-03-31 20:14:53

标签: javascript html css mootools

任何人都可以解释为什么

$(''+this.get("rel")+'-arrow').tween("margin-top",-10);

工作和

$(''+this.get("rel")+'-arrow').tween("background-position","center -10px");

不起作用? 非常感谢:))

1 个答案:

答案 0 :(得分:5)

所有动画方法都会为数字值设置动画,center不是,实际上,您不应该使用center,而是50%

示例:http://jsfiddle.net/bejD4/

document.getElement('div').tween('background-position', '50% 100px');