0

我有我的IE10 JS麻煩不工作(IE7-9作品「精」)的JavaScript /原型影響並行IE10

我有淡入淡出滑塊/出現的過渡效果。當滑動到下一張圖片時,當前圖片淡出,而下一張圖片淡入。問題是,IE10不起作用,它只隱藏當前圖片並顯示下一張圖片(但是之間的延遲點擊下一步按鈕,下一個畫面的表現等於在其他瀏覽器效果的持續時間,它確實是這樣做的東西..)

沒有控制檯或JS錯誤..

這是我的代碼:

var effects = new Array(); 

effects.push(new Effect.Fade(this.previous, { 
    sync: true 
})); 

effects.push(new Effect.Appear(this.current, { 
    sync: true 
})); 

this.scrolling = new Effect.Parallel(effects, { 
    duration: this.options.duration, 
    afterFinish: (function() { 
     if (this.controls) { 
      this.activateControls(); 
     } 
     if (this.options.afterMove && (typeof this.options.afterMove == 'function')) { 
      this.options.afterMove(); 
     } 
    }).bind(this) 
}); 

謝謝大家!

回答