Guest User

Untitled

a guest
Feb 15th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. export class TeamCarousel{
  2. $('.carousel.carousel-multi-item.v-2 .carousel-item').each(function(){
  3. var next = $(this).next();
  4. if (!next.length) {
  5. next = $(this).siblings(':first');
  6. }
  7. next.children(':first-child').clone().appendTo($(this));
  8.  
  9. for (var i=0;i<3;i++) {
  10. next=next.next();
  11. if (!next.length) {
  12. next = $(this).siblings(':first');
  13. }
  14. next.children(':first-child').clone().appendTo($(this));
  15. }
  16. });
  17. }
Add Comment
Please, Sign In to add comment