我正在尝试使用jQuery的.animate()方法设置元素的背景位置。 background-position属性通过定义x和y值来设置,如下所示:
background-position: 100px 100px;
Webkit现在支持background-position-x
和background-position-y
,但Firefox尚不支持。如果我只为一个值设置动画 -
例如。
$(div).animate({'background-position':'200px'}, 1000);
- 它会自动为X值设置动画,而不是动画。我无法找到一种独立设置Y值动画的方法。
是否正确使用语法?串联的一些技巧?
注意:我确实使用background-position-y在webkit中使用它,但也希望支持FF。
答案 0 :(得分:0)
只需使用以下内容:
background-position:0 200px;
其中0是x,200是y:
background-position:x y;
答案 1 :(得分:0)
我认为这需要jQuery扩展。它有点笨重,但是here's a working example
/**
* @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');