This commit is contained in:
mohadese namavar
2024-06-16 00:22:14 +04:30
commit ec84dfd222
322 changed files with 77942 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
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",
},
}
},
}