Frontend/JavaScript
[Swiper] Swiper 가장자리에 그라데이션 넣기
둥둥
2023. 1. 15. 17:02
728x90
요구사항
- 슬라이드의 오른쪽에 그라데이션/페이딩 효과 주기
해결 방법
https://stackoverflow.com/questions/72957731/gradients-on-edges-of-swiper-carousel
mask
속성에서 linear-gradient
사용하기
.swiper-container {
mask-image: linear-gradient(to right, white 90%, transparent 97%);
}
References.
https://stackoverflow.com/questions/72957731/gradients-on-edges-of-swiper-carousel
728x90