使用CaroufredSel的多个轮播

时间:2013-10-24 22:31:27

标签: javascript jquery html5 carousel caroufredsel

http://coolcarousels.frebsite.nl/c/50/

轮播是一个点击/滑动拖动幻灯片,它使用caroufresel.js。我有这个旋转木马的多个实例,但是当我点击并拖动其中一个旋转木马时,所有旋转木马都会移动。我相信它在JavaScript中,但我对此很新,我似乎无法想出这个。

所以我想做的就是将每个旋转木马分开来单独移动。

<article class="wrapper">
<div class="caroufredsel">
<ul class="carousel">
<!--CONTENT-->
</ul>
</div>
</article>

这是基本结构,可多次用于多个轮播。每一个都是自己区分的,但是我在为每个人实施轮播时遇到了麻烦。

顶部的初始链接显示原始标记和js。

欣赏回复。

这是javascript:

// the carousel
var $carousel = null;

// the draggable wrapper
var $wrapper = null;

// the width of one item
var itemWidth = 1280;

// the duration of the scrolling
var scrollDuration = 300;

// dragging-engine
var startDragPosition = false;
function startDrag( event ) {
event.preventDefault();

if ( $carousel.triggerHandler( 'isScrolling' ) ) {
startDragPosition = false;
return;
}
startDragPosition = event.pageX;
$wrapper.bind(
'mousemove',
function( e ) {
$wrapper.css({
'marginLeft': -(itemWidth + startDragPosition - e.pageX)
});
}
);
}
function stopDrag( event ) {
event.preventDefault();
$wrapper.unbind('mousemove');

if ( startDragPosition ) {
var currentDragPosition = event.pageX;
var direction = false;
if ( startDragPosition < currentDragPosition ) {
direction = 'prev';
} else if ( startDragPosition > currentDragPosition ) {
direction = 'next';
}
if ( direction ) {
$carousel.trigger( direction );
$wrapper.animate({
'marginLeft': -itemWidth
}, scrollDuration);
}
}
startDragPosition = false;
}

$(function() {

// the carousel
$carousel = $('.carousel');
$carousel.caroufredsel({
width: 1280 * 5,
height: 638,
align: false,
items: {
visible: 3,
start: -1
},
scroll: {
items: 1,
duration: scrollDuration
},
auto: false
});

// make the wrapper draggable
$wrapper = $carousel.parent();
$wrapper.css({
'cursor': 'move',
'marginLeft': -itemWidth
});
$wrapper.bind('mousedown', startDrag)
$wrapper.bind('mouseup', stopDrag)
$wrapper.bind('mouseleave', stopDrag);
});

1 个答案:

答案 0 :(得分:0)

由于您没有为旋转木马提供HTML,因此很难确切地说出出了什么问题。但是从我所知道的,你将var carousel定义为具有类'carousel'的任何东西。也许您需要为每个轮播提供一个唯一的ID,然后单独初始化它们?