0

我正在尝试更改图像的背景位置,例如里程表。除了缓动之外,一切似乎都有效,除了“摆动”之外,它只是在“线性”中发生变化。非常烦人,我搜索了高低,一无所获。

        col.animate({
            'background-position': '0 ' + ((newDigit * settings.heightNumber * -1) + zeroSet)
        }, 
        1000, 
        'swing');
      }

我也需要这个才能跨浏览器工作。它目前确实可以跨浏览器工作而不会放松。

任何帮助都会很棒。

4

1 回答 1

0

"swing" is the default parameter. passing "swing" is like passing no parameter. you can use jquery ui which has a lot more easing styles. http://jqueryui.com/demos/effect/easing.html

于 2012-08-16T11:20:21.643 回答