2012-04-24 73 views
2

我使用的寬度設置爲100%的anythingslider,以便它填充頁面,並且除了當頁面使用滾動條,滑塊是滾動條的100%寬度時,它工作正常。 我能做些什麼來解決這個問題嗎?AnythingSlider寬度與頁面滾動故障?

回答

1

代替滑塊的寬度設定爲100%的。讓其父爲100%(還設置了高度),然後設置expand選項truedemo):

HTML

<div id="wrapper"> 
    <ul id="slider"> 
     <li><img src="http://placekitten.com/300/200" alt="" /></li> 
     <li><img src="http://placehold.it/300x200" alt="" /></li> 
     <li><img src="http://ipsumimage.appspot.com/300x200.png" alt="" /></li> 
     <li><img src="http://dummyimage.com/300x200/000/fff.jpg" alt="" /></li> 
    </ul> 
</div> 

CSS

#wrapper { 
    height: 500px; 
} 

腳本

$('#slider').anythingSlider({ 
    // If true, the entire slider will expand to fit the parent element 
    expand: true 
});​ 
1

嘗試:

var width = document.body.clientWidth; // this is the inner or viewport dimension that excludes scrollbars 
$("#slider").width(width);