У меня есть скрипт jQuery, который создает карусель для поворота изображений влево и вправо по клику пользователя. Сначала я не планировал размещать более одной карусели на одной странице, но теперь необходимость пришла.
Проблема в том, что я не знаю, как ссылаться на одну карусель (ту, по которой щелкали), когда пользователь нажимает кнопку.
Вот сценарий
$(function()
{
// Put last item before first item, in case user clicks left
$('.carousel li:first').before($('.carousel li:last'));
// Right click handler
$('.right-button img').click(function()
{
// Get width plus margins
var item_width = $('.carousel li').outerWidth() + (2 * parseInt($('.carousel li').css('margin-right')));
// Get left indent
var orig_left_indent = $('.carousel').css('left');
// Calculate new left indent
var left_indent = parseInt(orig_left_indent) - item_width;
$('.carousel:not(:animated)').animate({'left': left_indent}, 500, 'swing', function()
{
// Put first item after last item
$('.carousel li:last').after($('.carousel li:first'));
// Set left indent to default
$('.carousel').css({'left': orig_left_indent});
});
});
// Left click handler
$('.left-button img').click(function()
{
// Get width plus margins
var item_width = $('.carousel li').outerWidth() + (2 * parseInt($('.carousel li').css('margin-right')));
// Get left indent
var orig_left_indent = $('.carousel').css('left');
// Calculate new left indent
var left_indent = parseInt(orig_left_indent) + item_width;
$('.carousel:not(:animated)').animate({'left': left_indent}, 500, 'swing', function()
{
// Put last item before first item
$('.carousel li:first').before($('.carousel li:last'));
// Set left indent to default
$('.carousel').css({'left': orig_left_indent});
});
});
// Close button handler
$('.carousel-container .close-button img').click(function()
{
$('.carousel-container').fadeOut(1000);
});
});
На данный момент, когда вы нажимаете вправо или влево на любой карусели, все они сдвигаются. Я не знаю, как получить ссылку на нажатую карусель.
вот HTML
<div class="carousel-container clearfix">
<div class="header close-button">
<strong>Check These Out</strong>
<?php echo html::image('media/images/close.gif'); ?></div>
<div class="left-button"><?php echo html::image('media/images/left_arrow.png'); ?></div>
<div class="carousel-inner">
<ul class="carousel">
<?php foreach ($items as $item): ?>
<li> ... </li>
<?php endforeach; ?>
</ul>
</div>
<div class="right-button"><?php echo html::image('media/images/right_arrow.png'); ?></div>
</div>
Как мне этого добиться, я не знаю, как ссылаться на карусель, на которую нажал пользователь, потому что стрелки являются дочерними элементами карусели.
РЕДАКТИРОВАТЬ: Спасибо за ответы. carousel = $(this).parent()
работает, но как мне проверить, анимирована ли карусель: с помощью селектора и новой переменной карусели?
$ (': анимированный', карусель)?