๋ฐ์ํ
| ์ค์น ๋ฐ ๊ธฐ๋ณธ ์ฌ์ฉ ์
https://swiperjs.com/react#use-swiper-slide
Swiper - The Most Modern Mobile Touch Slider
Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior.
swiperjs.com
1. React์ React-DOM ํจํค์ง๋ฅผ ์๋ ๋ฒ์ ์ผ๋ก ์ค์น
npm install react@18 react-dom@18
โป ๋ง์ฝ, ์ด์ ๋ฒ์ ์ด ๋ฎ๊ฑฐ๋ ๋์์ ์ฌ์ฉ์ด ์๋๋ค๋ฉด, ์๋ ์ฝ๋๋ก ์ญ์ ํ ์ ์ฝ๋๋ก ๋ค์ ์ค์น
npm uninstall react react-dom
2. Swiper ์ค์น
npm i swiper
3. Swiper ์ฌ์ฉํ jsx์ ์ฝ๋ ์ ๋ ฅ
// Import Swiper React components
import { Swiper, SwiperSlide } from 'swiper/react';
// Import Swiper styles
import 'swiper/css';
export default () => {
return (
<Swiper
spaceBetween={50}
slidesPerView={3}
onSlideChange={() => console.log('slide change')}
onSwiper={(swiper) => console.log(swiper)}
>
<SwiperSlide>Slide 1</SwiperSlide>
<SwiperSlide>Slide 2</SwiperSlide>
<SwiperSlide>Slide 3</SwiperSlide>
<SwiperSlide>Slide 4</SwiperSlide>
...
</Swiper>
);
};
** ํ์ด์ง ๋ค์ด์ , ์คํ ํ๋ ์ด ๋ฑ์ ํจ๊ณผ๋ฅผ ๋ฃ์ ์์
import React, { useContext, useState} from "react";
import styles from './Home.module.css';
/* ์ฌ๋ผ์ด๋ swiper */
// Import Swiper React components
import { Swiper, SwiperSlide } from 'swiper/react';
// Import Swiper styles
import 'swiper/css';
import 'swiper/css/navigation';
import 'swiper/css/pagination';
import 'swiper/css/scrollbar';
// import Swiper core and required modules
import { Navigation, Pagination, Scrollbar , Autoplay, A11y } from 'swiper/modules';
function Home() {
return(
// <div className={styles.Home}>
<Swiper
// install Swiper modules
modules={[Navigation, Pagination, Scrollbar, Autoplay, A11y]}
spaceBetween={50}
slidesPerView={3}
navigation
pagination={{ clickable: true }}
onSwiper={(swiper) => console.log(swiper)}
onSlideChange={() => console.log('slide change')}
autoplay= {{delay:2000}}
>
<SwiperSlide>Slide 1</SwiperSlide>
<SwiperSlide>Slide 2</SwiperSlide>
<SwiperSlide>Slide 3</SwiperSlide>
<SwiperSlide>Slide 4</SwiperSlide>
</Swiper>
)
};
export default Home;
๋ฐ์ํ
'๐ฉ Frontend-HTML & CSS & +JS > ๐ฐ React' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ฆฌ์กํธ ์์ด์ฝ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ฐ๊ธฐ (๋ถํธ์คํธ๋ฉ/yarn/npm) (1) | 2024.12.31 |
---|---|
๋ฆฌ์กํธ์ ์คํ์ผ ์ฌ๋ฌ๊ฐ ์ฃผ๊ธฐ (classNames ๋ผ์ด๋ธ๋ฌ๋ฆฌ) (1) | 2024.12.29 |
Codepen ์์ React ์คํํ๊ธฐ (0) | 2024.12.22 |
React ํฐ๋ฏธ๋ warning ๋ฉ์ธ์ง ์์ ๊ธฐ (0) | 2024.12.22 |
React ์์ ํ์ผ ์ฌ๋๋ฒ (๋ช ๋ น์ด) (0) | 2024.12.05 |