Contact Us

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

Get in Touch

Contact our team for more details
Contact Us Passionart

Contact Us

+94 71 200 9900

passionartw@gmail.com

No.9/1 Dehiwala Rd, Pepiliyana.

Colombo, Sri Lanka

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!"); } });