flexible-bootstrap-carousel.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*!
  2. Flexible Bootstrap Carousel v0.4
  3. Copyright (c) 2017 Dan Dev
  4. Released under the MIT license
  5. https://github.com/DanDevG/flexible-bootstrap-carousel/master/LICENSE.md
  6. */
  7. /* global $ */
  8. /* global CustomEvent */
  9. $(window).load(function() {
  10. $(".carousel").on("aCarouselHasBeenAdjusted", function() {
  11. // do something
  12. });
  13. adjustAllCarousels();
  14. $(window).resize(function() {
  15. adjustAllCarousels();
  16. });
  17. });
  18. function adjustAllCarousels() {
  19. $(".carousel.flexible").each(function() {
  20. var items = 0;
  21. $(this).find(".items .flex-item").each(function() {
  22. items++;
  23. });
  24. var item_width = ($(window).width() > 991 && $(window).width() < 1200) ? 300 : 319;
  25. adjustCarousel($(this), items, item_width);
  26. });
  27. }
  28. function adjustCarousel(carousel, num_of_items, item_width) {
  29. var carousel_width = $(carousel).width();
  30. var columns_in_item = Math.floor(carousel_width / item_width);
  31. if (columns_in_item > 3)
  32. {
  33. columns_in_item = 3;
  34. }
  35. else if (columns_in_item < 1)
  36. {
  37. columns_in_item = 1;
  38. }
  39. var number_of_items = Math.ceil(num_of_items / columns_in_item);
  40. var $items = $(carousel).find(".items .flex-item");
  41. var length_of_$items = $items.length;
  42. $(carousel).find(".carousel-inner").html("");
  43. var current_item = 0;
  44. var number_of_columns = String(Math.round(12 / columns_in_item));
  45. for (var i = 0; i < number_of_items; i++)
  46. {
  47. var item = "<div class='item'><div class='row'>";
  48. var j = 0;
  49. for ( ; j < columns_in_item; j++)
  50. {
  51. var item_body = (current_item <= length_of_$items - 1) ? $($items[current_item]).clone().wrap("<p>").parent().html() : "";
  52. item += "<div class='col-xs-" + number_of_columns + "'>" + item_body + "</div>";
  53. current_item++;
  54. }
  55. item += "</div></div>";
  56. $(carousel).find(".carousel-inner").append(item);
  57. if (i == 0)
  58. {
  59. $(carousel).find(".carousel-inner .item").addClass("active");
  60. }
  61. }
  62. alignItemsInsideACarousel();
  63. var theCarousel = document.getElementById($(carousel).attr("id"));
  64. theCarouselHasBeenAdjusted(theCarousel);
  65. }
  66. function alignItemsInsideACarousel() {
  67. $(".carousel").each(function() {
  68. $(this).find(".carousel-inner .item").each(function() {
  69. var $items = $(this).children(".row").children("[class^='col-xs']");
  70. var number_of_items = $items.length;
  71. switch (number_of_items) {
  72. case 1:
  73. $items.eq(0).addClass("center");
  74. break;
  75. case 2:
  76. $items.eq(0).addClass("left");
  77. $items.eq(1).addClass("right");
  78. break;
  79. case 3:
  80. $items.eq(0).addClass("left");
  81. $items.eq(1).addClass("center");
  82. $items.eq(2).addClass("right");
  83. }
  84. });
  85. });
  86. }
  87. function theCarouselHasBeenAdjusted(carousel) {
  88. var evt = new CustomEvent("aCarouselHasBeenAdjusted", {});
  89. carousel.dispatchEvent(evt);
  90. }