2010-07-28 4 views
2

У меня есть проблема с методом :last и .before(), не вставляя код перед последним элементом.jQuery Карусель прыгает с неправильным товаром


[редактировать]
Я придумал новый выпуск :/


Проблема заключается в том (в настоящее время, что <li> «s в порядке) , что теперь карусель прокручивает 4 элемента, но они быстро переходят к следующему пункту.

Код ниже. (также, я думаю, что это: $('#carousel_ul').css({'left' : '0px'});, что делает это - на линиях 1937

Благодаря очень

$(document).ready(function() { 
    var numItems = $('#carousel_ul').find('li'); 
    var visibleItems = 4; 
    var difference = visibleItems % numItems.length; 

    $('#carousel_ul li').last().before($('#carousel_ul li:last')+$('#carousel_ul li:last')); 

    while (difference > 1) { 
     $('#carousel_ul li:last').after('<li class="empty" style="background-color: green;"></li>'); 
     difference--; 
    } 

    $('#right_scroll a').click(function(){ 
     var item_width = $('#carousel_ul li').outerWidth() + 10; 
     var left_indent = parseInt($('#carousel_ul').css('left')) - (item_width * 4); 

     $('#carousel_ul:not(:animated)').animate({'left' : left_indent},1500,function(){  
      $('#carousel_ul li:last').after($('#carousel_ul li:first')); 
      $('#carousel_ul').css({'left' : '0px'}); //error here? 
     }); 
     return false; 
    }); 

    $('#carousel_ul li').each(function(intIndex) { 
     var itemName = $(this).attr('name'); 
     $(this).html(itemName); 
     console.log(itemName); 
    }); 

    $('#left_scroll a').click(function(){ 

     var item_width = $('#carousel_ul li').outerWidth() + 10; 
     var left_indent = parseInt($('#carousel_ul').css('left')) + (item_width * 4); 

     $('#carousel_ul:not(:animated)').animate({'left' : left_indent},1500,function(){  
      $('#carousel_ul li:first').before($('#carousel_ul li:last')); 
      $('#carousel_ul').css({'left' : '0px'}); //error here? 
     }); 
     return false; 
    }); 
    $('#tabcontainer > ul').tabs(); 
}); 

И CSS:

#carousel_inner { 
float:left; /* important for inline positioning */ 
width:800px; /* important (this width = width of list item(including margin) * items shown */ 
height: 150px; 
position: relative; 
overflow: hidden; /* important (hide the items outside the div) */ 
/* non-important styling bellow */ 
background: #F0F0F0; 
z-index: 15; 
} 

#carousel_ul { 
position:relative; 
left:0px; /* important (this should be negative number of list items width(including margin) */ 
list-style-type: none; /* removing the default styling for unordered list items */ 
margin: 0px; 
padding: 0px; 
width:9999px; /* important */ 
height: 150px; 
min-height: 150px; 
/* non-important styling bellow */ 
padding-bottom:10px; 
z-index: 15; 
} 

#carousel_ul li{ 
float: left; /* important for inline positioning of the list items */          
width:205px; /* fixed width, important */ 
/* just styling bellow*/ 
padding:0px; 
border: 1px solid black; 
height:150px; 
min-height: 150px; 
z-index: 15; 
} 

#carousel_ul li img { 
.margin-bottom:-4px; /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/ 
/* styling */ 
cursor:pointer; 
cursor: hand; 
border:0px; 
z-index: 15; 
} 
#left_scroll, #right_scroll{ 
float:left; 
height:130px; 
width:15px; 
background: #C0C0C0; 
z-index: 15; 
} 
#left_scroll img, #right_scroll img{ 
/*styling*/ 
cursor: pointer; 
cursor: hand; 
z-index: 15; 
} 
+0

Уверен, что есть символ подчеркивания в '# carousel_ul' – Sarfraz

+0

@sAc - yup, tis' carousel_ul' –

+0

Обновленный вопрос. –

ответ

1

Я установил это вручную настройки CSS анимации -160px.

0
..

У меня была аналогичная проблема раньше. Она была решена с использованием: last-child и first-child вместо: first и: last. Надеюсь, что это может сработать для вас. lso использовал insertBefore() и insertAfter(), они, казалось, работали лучше, чем после() и before() для меня.

+0

Нет, это не изменило его ни '': ('cheers anyway. –

+0

Обновленный вопрос –

0

Будет ли это работать, чтобы сделать это так?

$('#carousel_ul').append('<li class="empty" style="background-color: green;"></li>'); 
+0

Doh! Похоже, вы избили меня! – btelles

+0

не боится, еще до последнего элемента': (' –