diff options
Diffstat (limited to 'themes/kalpesh/acadmix_subtheme/js/custom_subtheme.js')
-rw-r--r-- | themes/kalpesh/acadmix_subtheme/js/custom_subtheme.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/themes/kalpesh/acadmix_subtheme/js/custom_subtheme.js b/themes/kalpesh/acadmix_subtheme/js/custom_subtheme.js new file mode 100644 index 0000000..f8c176a --- /dev/null +++ b/themes/kalpesh/acadmix_subtheme/js/custom_subtheme.js @@ -0,0 +1,18 @@ +$('#myCarousel').carousel({ + interval: 10000 +}) + +$('.carousel .item').each(function(){ + var next = $(this).next(); + if (!next.length) { + next = $(this).siblings(':first'); + } + next.children(':first-child').clone().appendTo($(this)); + + if (next.next().length>0) { + next.next().children(':first-child').clone().appendTo($(this)); + } + else { + $(this).siblings(':first').children(':first-child').clone().appendTo($(this)); + } +});
\ No newline at end of file |