mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: overflow carousel items
This commit is contained in:
parent
b9159e4723
commit
b7f4aadf86
4 changed files with 14 additions and 3 deletions
|
@ -106,7 +106,7 @@ export const App = (props) => {
|
||||||
{preferencesStore.flags.enableAnalytics && (
|
{preferencesStore.flags.enableAnalytics && (
|
||||||
<PlausibleProvider
|
<PlausibleProvider
|
||||||
domain="anix.wah.su"
|
domain="anix.wah.su"
|
||||||
trackLocalhost={true}
|
trackLocalhost={false}
|
||||||
selfHosted={true}
|
selfHosted={true}
|
||||||
enabled={true}
|
enabled={true}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -12,4 +12,7 @@
|
||||||
width: 64px;
|
width: 64px;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
}
|
}
|
||||||
|
.swiper {
|
||||||
|
overflow: visible !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ export const ReleaseCourusel = (props: {
|
||||||
spaceBetween: 8,
|
spaceBetween: 8,
|
||||||
allowTouchMove: true,
|
allowTouchMove: true,
|
||||||
slidesPerView: "auto",
|
slidesPerView: "auto",
|
||||||
|
rewind: true,
|
||||||
navigation: {
|
navigation: {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
nextEl: ".swiper-button-next",
|
nextEl: ".swiper-button-next",
|
||||||
|
@ -30,6 +31,8 @@ export const ReleaseCourusel = (props: {
|
||||||
navigation: {
|
navigation: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
|
initialSlide: 1,
|
||||||
|
centeredSlides: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
modules: [Navigation],
|
modules: [Navigation],
|
||||||
|
@ -52,8 +55,8 @@ export const ReleaseCourusel = (props: {
|
||||||
</Link>
|
</Link>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="m-4">
|
<div className="my-4">
|
||||||
<div className="swiper">
|
<div className={`swiper ${Styles["swiper"]}`}>
|
||||||
<div className="swiper-wrapper">
|
<div className="swiper-wrapper">
|
||||||
{props.content.map((release) => {
|
{props.content.map((release) => {
|
||||||
return (
|
return (
|
||||||
|
|
5
public/changelog/3.2.1.md
Normal file
5
public/changelog/3.2.1.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# 3.2.0
|
||||||
|
|
||||||
|
## изменено
|
||||||
|
|
||||||
|
- Изменён вид каруселей
|
Loading…
Add table
Reference in a new issue