因?yàn)樽罱_發(fā)的項(xiàng)目涉及到移動(dòng)設(shè)備上的 HTML5 開發(fā),其中需要實(shí)現(xiàn)輪播效果。然后最快捷的方式,你知道的(Bootstrap),然后原生的 Bootstrap 的 carousel.js 插件并沒有支持手勢(shì)。
然后......自己想辦法唄,再然后,就有下面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òng)手勢(shì)而導(dǎo)入整個(gè) jQuery Mobile 貌似有些大材小用, 而 TouchSwipe 在兩邊可點(diǎn)擊按鈕區(qū)域滑動(dòng)無效,然后選擇了 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òng)手勢(shì)而導(dǎo)入整個(gè) jQuery Mobile 貌似有些大材小用, 而 TouchSwipe 在兩邊可點(diǎn)擊按鈕區(qū)域滑動(dòng)無效,然后選擇了 Hammer。