Frontend/JavaScript

[Swiper] Swiper 가장자리에 그라데이션 넣기

둥둥 2023. 1. 15. 17:02
728x90
요구사항

enter image description here

  1. 슬라이드의 오른쪽에 그라데이션/페이딩 효과 주기

해결 방법
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