2017-02-22 56 views
0

我的目標是獲得類似於原生android的類似滑動界面體驗。 開始屏幕上的WhatsApp選項卡是我的目標的一個很好的例子。因此我決定使用http://idangero.us/swiper。 我的配置是這樣的:無法滑動到最後的項目

// This works -> but I dont want centered slides 
var galleryThumbs = new Swiper('.gallery-thumbs', { 
    centeredSlides: true, 
    slidesPerView: 'auto' 
}); 

// This will not work -> I can only slide the first elements but I cannot slide to the last ones 
var galleryThumbs = new Swiper('.gallery-thumbs', { 
    slidesPerView: 'auto' 
}); 

這裏是我的問題的屏幕截圖(我有10個div的活動的幻燈片有BG-紅色。):

enter image description here

所以我只能滑動直到幻燈片7.嘗試進一步滑動不起作用。

enter image description here

是我的目標可能與選定的刷卡插件?

回答

0

嘗試使用slidesOffsetBefore看到文檔here

+0

你能提供的示例代碼?我試了一下,但沒有工作。 – user3481997