Guest User

Untitled

a guest
Dec 1st, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. jQuery(document).ready(function($){
  2. // Project Scroll Js
  3. //.removeAttr("data-lightbox");
  4. jQuery(".carousel-inner .item:not(:first-child) .portfolio-area .portfolio-showcase-icons .hover_thumb").attr('data-lightbox="image"');
  5.  
  6. jQuery('#newCarousel .item').each(function(){
  7.  
  8.  
  9.  
  10. var next = $(this).next();
  11. if (!next.length) {
  12. next = jQuery(this).siblings(':first');
  13. }
  14. next.children(':first-child').clone().appendTo($(this));
  15.  
  16. for (var i=0;i<2;i++) {
  17. next=next.next();
  18. if (!next.length) {
  19. next = $(this).siblings(':first');
  20. }
  21.  
  22. next.children(':first-child').clone().appendTo($(this));
  23. }
  24. });
  25.  
  26. });
Add Comment
Please, Sign In to add comment