0
我無法找到在Twitter Bootstrap模式中輕掃圖像的解決方案。現在我用如何向模式內的圖像添加輕掃功能
// Swipe feature
$('#myCarousel').swiperight(function() {
$('#myCarousel').carousel('prev');
});
$('#myCarousel').swipeleft(function() {
$('#myCarousel').carousel('next');
});
的旋轉木馬它基本上加載到Twitter的模態與
('.modal-trigger img').click(function(e) {
$('#myModal img').attr('src', $(this).attr('data-img-url'));
});
這是我HTML structure。
那麼,即使在模態窗口中如何添加滑動效果,並在該模式窗口中加載所有圖像?
感謝丹尼斯,但那不是我正在尋找的。 – 2014-10-10 10:43:25