diff --git a/app/components/ReleaseCourusel/ReleaseCourusel.module.css b/app/components/ReleaseCourusel/ReleaseCourusel.module.css index 4a63b8c..1f56115 100644 --- a/app/components/ReleaseCourusel/ReleaseCourusel.module.css +++ b/app/components/ReleaseCourusel/ReleaseCourusel.module.css @@ -6,13 +6,16 @@ display: none !important; } +@media (hover: hover) and (min-width: 1024px) { + .swiper { + overflow: visible !important; + } +} + @media (hover: hover) { .section:hover .swiper-button { display: flex !important; width: 64px; height: 64px; } - .swiper { - overflow: visible !important; - } } diff --git a/app/components/ReleaseCourusel/ReleaseCourusel.tsx b/app/components/ReleaseCourusel/ReleaseCourusel.tsx index f68d1c3..06d3a77 100644 --- a/app/components/ReleaseCourusel/ReleaseCourusel.tsx +++ b/app/components/ReleaseCourusel/ReleaseCourusel.tsx @@ -1,10 +1,9 @@ "use client"; -import { useEffect } from "react"; import { ReleaseLink } from "../ReleaseLink/ReleaseLink"; import Link from "next/link"; +import { Swiper, SwiperSlide } from 'swiper/react'; import Styles from "./ReleaseCourusel.module.css"; -import Swiper from "swiper"; import "swiper/css"; import "swiper/css/navigation"; import { Navigation } from "swiper/modules"; @@ -14,34 +13,8 @@ export const ReleaseCourusel = (props: { showAllLink?: string; content: any; }) => { - useEffect(() => { - const options: any = { - direction: "horizontal", - spaceBetween: 8, - allowTouchMove: true, - slidesPerView: "auto", - rewind: true, - navigation: { - enabled: false, - nextEl: ".swiper-button-next", - prevEl: ".swiper-button-prev", - }, - breakpoints: { - 450: { - navigation: { - enabled: true, - }, - initialSlide: 1, - centeredSlides: true, - }, - }, - modules: [Navigation], - }; - new Swiper(".swiper", options); - }, []); - return ( -
+

{props.sectionTitle} @@ -56,35 +29,53 @@ export const ReleaseCourusel = (props: { )}

-
-
+ {props.content.map((release) => { return ( -
-
- -
-
+ + ); })} +
+
+
+ {/*
+
-
-
-
+ +
*/}
); diff --git a/public/changelog/3.2.1.md b/public/changelog/3.2.1.md index 5897a57..ac21f69 100644 --- a/public/changelog/3.2.1.md +++ b/public/changelog/3.2.1.md @@ -7,7 +7,7 @@ ## Изменено -- Изменён вид каруселей релизов для ПК +- Изменён вид каруселей релизов ## Исправлено