Files
mohadese namavar ec84dfd222 init git
2024-06-16 00:22:14 +04:30

35 lines
1.1 KiB
JavaScript

export default {
btns: {
arrows: [
{ icon: "isax isax-arrow-right-3", rounded: true, swiper: true },
{ icon: "isax isax-arrow-left-2", rounded: true, swiper: true },
],
},
swipers: {
topSlider: {
slidesPerView: 1,
modules: [SwiperNavigation],
spaceBetween: 0,
navigation: {
prevEl: "button[swiper]:first-of-type",
nextEl: "button[swiper]:last-of-type",
},
},
newProduct: {
slidesPerView: "auto",
modules: [SwiperNavigation],
navigation: {
prevEl: "div:has(>.newProduct)>button[swiper]:first-of-type",
nextEl: "div:has(>.newProduct)>button[swiper]:last-of-type",
},
},
topProduct: {
slidesPerView: "auto",
modules: [SwiperNavigation],
navigation: {
prevEl: "div:has(>.topProduct)>button[swiper]:first-of-type",
nextEl: "div:has(>.topProduct)>button[swiper]:last-of-type",
},
}
},
}