因為最近開發(fā)的項目涉及到移動設(shè)備上的 HTML5 開發(fā),其中需要實現(xiàn)輪播效果。然后最快捷的方式,你知道的(Bootstrap),然后原生的 Bootstrap 的 carousel.js 插件并沒有支持手勢。
然后......自己想辦法唄,再然后,就有下面3種解決方案 :
jQuery Mobile插件
jQuery Mobile (http://jquerymobile.com/download/)
$("#carousel-generic").swipeleft(function() {
$(this).carousel('next');
});
$("#carousel-generic").swiperight(function() {
$(this).carousel('prev');
});
TouchSwipe jQuery插件
TouchSwipe jQuery plugin (https://github.com/mattbryson/TouchSwipe-Jquery-Plugin)
$("#carousel-generic").swipe({
swipeLeft: function() { $(this).carousel('next'); },
swipeRight: function() { $(this).carousel('prev'); },
});
Hammer插件
hammer.js (http://eightmedia.github.io/hammer.js/) +
jquery.hammer.js (https://github.com/EightMedia/jquery.hammer.js)
$('#carousel-generic').hammer().on('swipeleft', function(){
$(this).carousel('next');
});
$('#carousel-generic').hammer().on('swiperight', function(){
$(this).carousel('prev');
});
單單為了支持滑動手勢而導(dǎo)入整個 jQuery Mobile 貌似有些大材小用, 而 TouchSwipe 在兩邊可點擊按鈕區(qū)域滑動無效,然后選擇了 Hammer。
然后......自己想辦法唄,再然后,就有下面3種解決方案 :
jQuery Mobile插件
jQuery Mobile (http://jquerymobile.com/download/)
$("#carousel-generic").swipeleft(function() {
$(this).carousel('next');
});
$("#carousel-generic").swiperight(function() {
$(this).carousel('prev');
});
TouchSwipe jQuery插件
TouchSwipe jQuery plugin (https://github.com/mattbryson/TouchSwipe-Jquery-Plugin)
$("#carousel-generic").swipe({
swipeLeft: function() { $(this).carousel('next'); },
swipeRight: function() { $(this).carousel('prev'); },
});
Hammer插件
hammer.js (http://eightmedia.github.io/hammer.js/) +
jquery.hammer.js (https://github.com/EightMedia/jquery.hammer.js)
$('#carousel-generic').hammer().on('swipeleft', function(){
$(this).carousel('next');
});
$('#carousel-generic').hammer().on('swiperight', function(){
$(this).carousel('prev');
});
單單為了支持滑動手勢而導(dǎo)入整個 jQuery Mobile 貌似有些大材小用, 而 TouchSwipe 在兩邊可點擊按鈕區(qū)域滑動無效,然后選擇了 Hammer。