깜놀하는 해므찌로

Swiper too big size / Swiper size handle example / 스와이퍼 슬라이드 사이즈 조절 본문

IT

Swiper too big size / Swiper size handle example / 스와이퍼 슬라이드 사이즈 조절

agnusdei1207 2023. 5. 22. 17:34
반응형
SMALL
<swiper-container class="swiper3" style="max-height: 100vh">
      <swiper-slide
        style="width: 100%; height: 100%"
        *ngFor="let video of videos"
      >
  			내용
      </swiper-slide>
    </swiper-container>

1. max-height: 100vh : 스와이프 최대 크기를 현재 스크린 크기 100% 로 한정합니다. (max-width: 100vh)

2. swiper-slide 태그 => width, height 100% 설정 기본으로 해두시길 권장드립니다.

반응형
LIST