// 스와이퍼 클래스
.swiper {
width: 100%;
height: 100%;
padding: 16px 0;
}
// 슬라이드 클래스
.swiper-slide {
transition: all 0.3s ease;
}
// 활성화(정면) 슬라이드 클래스
.swiper-slide-active {
transform: scale(1) !important;
z-index: 10;
}
// 이전,다음 슬라이드 클래스
.swiper-slide-prev,
.swiper-slide-next {
transform: scale(0.9) !important;
opacity: 0.7;
}'라이브러리' 카테고리의 다른 글
| Next.js에서 EmailJS로 문의 폼 이메일 발송 구현하기 (0) | 2025.12.08 |
|---|---|
| [html2canvas] html2canvas로 UI를 이미지로 다운로드 하기 (0) | 2025.08.04 |
| [react-dnd] 리액트에서 드래그앤드랍(DND) 기능 구현 방법 (1) | 2025.07.15 |
| [ts-particle] 버블 애니메이션 컴포넌트 예시 코드(버블 프리셋 적용) (0) | 2025.04.27 |
| [motion] 뷰포트 감지 훅(useInView) 사용 방법 (0) | 2025.04.27 |