|
|
var Swiper = require('yoho-swiper');
|
|
|
|
|
|
$('.swiper-container').each(function() {
|
|
|
if ($(this).find('.swiper-slide').length > 1) {
|
|
|
new Swiper($(this).get(0), {
|
|
|
lazyLoading: true,
|
|
|
lazyLoadingInPrevNext: true,
|
|
|
loop: true,
|
|
|
autoplay: 3000,
|
|
|
autoplayDisableOnInteraction: true,
|
|
|
paginationClickable: true,
|
|
|
pagination: $(this).closest('.banner-top').find('.pagination-inner').get(0)
|
|
|
});
|
|
|
}
|
|
|
}); |
...
|
...
|
|