2010-12-11 86 views
3

嘿家伙,我试图通过使用jQuery的滚动背景显示iPhone应用程序的屏幕截图。我写的代码完全适用于FF & Safari,但IE会引发“无效参数”错误。在IE8 jQuery。动画问题

/编辑:我想我会添加什么IE实际上做失败时。它跳转到第二个屏幕截图并引发错误。每个其他浏览器的动画都很流畅,但IE不会动画,只是跳到第二个屏幕截图然后引发错误。

这里是我的代码:

var scrollInterval = 5000; // scroll every 5 seconds 

    // set the default position 
    var current = 1284; 

    var screenScroll = function(){ 
     var imageSize = 1284; 
     var screenshotWidth = 214; 
     current -= screenshotWidth; 

     if (current < screenshotWidth) { 
      current = imageSize; 
     } 

     var bgPos = current + "px top"; 
     $("#screenshotDiv").animate({backgroundPosition:bgPos}, 500); 

    } 

    $(document).ready(function() { 
     //Calls the scrolling function repeatedly 
     var init = setInterval(screenScroll, scrollInterval); 
    }); 

回答

5

我无法使用jQuery在IE8上正常工作。显然,IE上有一个jQuery背景位置动画的bug。令人惊喜的是,IE浏览器遇到了与其他现代浏览器兼容的问题。

不用担心,我发现了一个修复程序。在包含jQuery之后包含这个脚本,它将解决问题。我试图找到该插件的官方联系,但放弃了找到一个最新的一个,所以我将只发布文件:

/** 
* @author Alexander Farkas 
* v. 1.21 
*/ 

(function($) { 
    if(!document.defaultView || !document.defaultView.getComputedStyle){ // IE6-IE8 
     var oldCurCSS = jQuery.curCSS; 
     jQuery.curCSS = function(elem, name, force){ 
      if(name === 'background-position'){ 
       name = 'backgroundPosition'; 
      } 
      if(name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[ name ]){ 
       return oldCurCSS.apply(this, arguments); 
      } 
      var style = elem.style; 
      if (!force && style && style[ name ]){ 
       return style[ name ]; 
      } 
      return oldCurCSS(elem, 'backgroundPositionX', force) +' '+ oldCurCSS(elem, 'backgroundPositionY', force); 
     }; 
    } 

    var oldAnim = $.fn.animate; 
    $.fn.animate = function(prop){ 
     if('background-position' in prop){ 
      prop.backgroundPosition = prop['background-position']; 
      delete prop['background-position']; 
     } 
     if('backgroundPosition' in prop){ 
      prop.backgroundPosition = '('+ prop.backgroundPosition; 
     } 
     return oldAnim.apply(this, arguments); 
    }; 

    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]]; 
    } 

    $.fx.step. backgroundPosition = function(fx) { 
     if (!fx.bgPosReady) { 
      var start = $.curCSS(fx.elem,'backgroundPosition'); 

      if(!start){//FF2 no inline-style fallback 
       start = '0px 0px'; 
      } 

      start = toArray(start); 

      fx.start = [start[0],start[2]]; 

      var end = toArray(fx.options.curAnim.backgroundPosition); 
      fx.end = [end[0],end[2]]; 

      fx.unit = [end[1],end[3]]; 
      fx.bgPosReady = true; 
     } 
     //return; 
     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]; 

    }; 
})(jQuery); 

代码现在的作品完美的IE8。我没有打算在IE7中测试,因为只有13%的流量来自IE,所以我不打算支持旧版本....太多的头痛。

0

IE需要第二个参数是{时间:500},对不对?或者那只是惯例?

其实,环顾四周,backgroundPosition是在IE8与顶级使用时折断:http://reference.sitepoint.com/css/background-position

也许你可以尝试下呢?

+0

改变我已经用0像素,而不是顶部试过,结果是一样的 – 2010-12-11 01:54:39

+0

以防万一,我继续使用底部,而不是尝试。它仍然抛出相同的错误。 – 2010-12-11 06:56:25

0

关于亚历山大法卡斯脚本的解决方案的工作原理,但它需要第一个小小的修复(因为我需要为了使其工作)。行:

var end = toArray(fx.options.curAnim.backgroundPosition); 

var end = toArray(fx.end);