我使用JQuery swiper制作幻灯片,但如果我有多张不同尺寸的图片Jauery swiper
,则无法正确管理图片。
这是我的代码:
Swiper('#swiper', {
direction: 'horizontal',
loop: false,
autoplay: 2000,
autoplayDisableOnInteraction: true,
nextButton: true,
prevButton: true,
zoom: true,
centeredSlides: true,
calculateHeight: true,
pagination: '.swiper-pagination',
paginationClickable: true,
slidesPerView: 5,
spaceBetween: 30,
});
答案 0 :(得分:0)
确保在图像上设置宽度以防止溢出。
像img { max-width: 100%; }
需要您的HTML源代码才能进一步诊断。