背景jQuery中的位置动画无法在Firefox中运行

前端之家收集整理的这篇文章主要介绍了背景jQuery中的位置动画无法在Firefox中运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在这里做一个wesbsite: http://www.benjaminpotter.org/portfolio2/

看看加载启动,它看起来很好,但不是在Firefox中.你知道为什么在jquery中制作动画的背景位置在Firefox中不起作用吗?看看附加到它的脚本叫做animate here.

解决方法

正如dzejkej所指出的,背景位置的单独值不是标准的一部分,并且不受Firefox支持.如 jQuery animate() page所述:

All animated properties should be animated to a single numeric value

这意味着背景位置不合格,因为它需要两个值,x pos和y pos.

您将不得不使用动画插件.不幸的是,目前jQuery插件网站已关闭,所以我在这里提供了一个适用于Firefox的版本:

/** jquery.bgpos.js
 * @author Alexander Farkas
 * v. 1.02
 */
(function($) {
    $.extend($.fx.step,{
        backgroundPosition: function(fx) {
            if (fx.state === 0 && typeof fx.end == 'string') {
                var start = $.curCSS(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],res[4]];
           }
        }
    });
})(jQuery);

请参阅this page获取它的使用参考.

原文链接:https://www.f2er.com/jquery/181219.html

猜你在找的jQuery相关文章