0

我正在尝试使用 jQuery 的 .animate() 方法为元素的背景位置设置动画。通过定义 x 和 y 值来设置 background-position 属性,如下所示:

background-position: 100px 100px;

Webkit 现在支持background-position-xand background-position-y,但在 Firefox 中尚不支持。如果我只为一个值设置动画——

例如。 $(div).animate({'background-position':'200px'}, 1000);— 它自动为 X 值而不是方式设置动画。我找不到独立动画 Y 值的方法。

语法正确吗?串联的一些技巧?

注意:我确实使用 background-position-y 让它在 webkit 中工作,但也希望 FF 支持。

4

2 回答 2

0

只需使用以下内容:

background-position:0 200px;

其中 0 是 x,200 是 y:

background-position:x y;
于 2013-03-23T17:07:25.223 回答
0

我相信这需要一个 jQuery 扩展。它有点笨重,但这是一个工作示例

/**
 * @author Alexander Farkas
 * v. 1.02
 *
 * Edited by Nelson Wells for jQuery 1.8 compatibility
 */
(function($) {
    $.extend($.fx.step,{
        backgroundPosition: function(fx) {
            if (fx.pos === 0 && typeof fx.end == 'string') {
                var start = $.css(fx.elem,'backgroundPosition');
                start = toArray(start);
                fx.start = [start[0],start[2]];
                var end = toArray(fx.end);
                fx.end = [end[0],end[2]];
                fx.unit = [end[1],end[3]];
            }
            var nowPosX = [];
            nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
            nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];
            fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];

            function toArray(strg){
                strg = strg.replace(/left|top/g,'0px');
                strg = strg.replace(/right|bottom/g,'100%');
                strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
                var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
                return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
            }
        }
    });
})(jQuery);

$('.test').animate({
  'background-position-x': '100px',
  'background-position-y': '200px',
   backgroundPosition:"+100px 200px"
}, 400, 'linear');
于 2013-03-23T17:36:37.900 回答