モバイル向けの優れたカルーセル スクリプトです。初期化後にカルーセルにスライドを追加する方法を見つけた人はいますか? 私の目標は、ユーザーが最後のスライド (「無限のカルーセル」のようなもの) に到達したときにアイテムを追加することです。
コード例を次に示します。
this.collection.each(function(pic){
var slide = new PictureSlideView({model:pic});
this.$('.slide-container').append(slide.el);
},this);
this.$('.swipe').Swipe({
continuous: false
});
// this doesn't work:
var newModel = new Picture({...});
var newSlide = new PictureSlideView({model:newModel});
this.$('.slide-container').append(slide.el);
// insert awesome code to fix it here:
// ...