Wedding Films

Passing wondrous moments may not come with the same glow again.

No Videos Available
jQuery(document).ready(function ($) { // Ensure Swiper script is available if (typeof Swiper !== "undefined") { var swiper = new Swiper(".custom-swiper", { // Use a unique class slidesPerView: "auto", spaceBetween: 10, loop: true, autoplay: { delay: 3000, }, navigation: { nextEl: ".custom-swiper-button-next", prevEl: ".custom-swiper-button-prev", }, pagination: { el: ".custom-swiper-pagination", clickable: true, }, }); // Adjust slides width dynamically based on image size $(".custom-swiper .swiper-slide img").each(function () { let img = $(this); img.on("load", function () { img.parent().css("width", img[0].naturalWidth + "px"); }).each(function () { if (this.complete) $(this).trigger("load"); }); }); } else { console.error("Swiper.js is not loaded!"); } });