2011-06-29 55 views
0

我爲化妝師創建了一個網站,並且我正在使用Galleria進行投資組合。我在IE8中的imagePosition屬性有問題。即使我使用imagePosition:'center',是位於IE8左側的圖像。 (其它瀏覽器圖像居中)環球免稅店 - 在IE8中的imagePosition問題(galleria.aino.se)

下面是代碼:

function initGalleria(){ 
     $('#galleria').galleria({ 
     debug:true, 
     imageCrop:'height', 
     imagePan:true, 
     imagePanSmoothness:10, 
     imagePosition:'center', 
     transition:'fade', 
     transitionSpeed:500, 
     idleTime:1000, 
     queue:false, 
     extend: function() { 
      this.attachKeyboard({ 
       left: this.prev, // applies the native prev() function 
       right: this.next 
      }); 
      this.addIdleState(this.get('thumbnails-container'), { 
       opacity: 0 
      }); 
      this.addIdleState(this.get('info-link'), { 
       opacity: 0 
      }); 
     } 
    }); 
} 

...和link to the website我的工作。

你有什麼建議嗎?

謝謝。

+0

您的.scrollable .items的樣式寬度爲20000em; – Jawad

回答

0

@swenedo我不知道你的代碼有什麼問題。這是絕對正確的。我在Chrome 10,FF 4,IE 8上測試過它,它沒有任何問題。當我在IE8上打開你的網站時,我張貼了一張屏幕圖片,它位於中心位置。 enter image description here

+0

你的截圖不是來自投資組合。問題是我在投資組合中使用的環球免稅店。但謝謝你的測試:) – swenedo