You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
909 B
53 lines
909 B
$(function() {
|
|
var swiper1 = new Swiper(".banner .swiper", {
|
|
slidesPerView: 1,
|
|
// effect : 'fade',
|
|
loop:true,
|
|
speed:2500,
|
|
parallax: true,
|
|
autoplay: {
|
|
delay: 5500,
|
|
disableOnInteraction: false,
|
|
},
|
|
pagination: {
|
|
el: ".swiper-pagination",
|
|
clickable: true,
|
|
},
|
|
});
|
|
|
|
var swiper2 = new Swiper(".supplier .swiper", {
|
|
slidesPerView: 1.8,
|
|
// effect : 'fade',
|
|
spaceBetween: 50,
|
|
speed:2500,
|
|
autoplay: {
|
|
delay: 5500,
|
|
disableOnInteraction: false,
|
|
},
|
|
breakpoints: {
|
|
480: {
|
|
slidesPerView: 2.4,
|
|
},
|
|
768: {
|
|
slidesPerView: 3.6,
|
|
},
|
|
1024: {
|
|
slidesPerView: 4.8,
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|