Web Components Carousel 개요

    Ignite UI for Web Components 캐러셀은 텍스트 슬라이드, 링크 및 기타 html 요소가 있는 이미지 컬렉션을 앞뒤로 탐색하는 사용자를 위해 슬라이드쇼와 같은 웹 환경을 만들 수 있는 가장 유연한 방법을 제공하는 응답성이 뛰어난 경량 구성 요소입니다.

    Web Components Carousel 구성 요소를 사용하면 애니메이션, 슬라이드 전환 및 사용자 지정을 사용할 수 있으므로 인터페이스를 쉽게 조정하고 사용자 정의 캐러셀 Web Components 구축할 수 있습니다.

    아래에서 볼 수 있는 Web Components Carousel 데모는 이미지만 포함된 슬라이드를 보여줍니다.

    Usage

    먼저 다음 명령을 실행하여 Ignite UI for Web Components 설치해야 합니다.

    npm install igniteui-webcomponents
    

    그런 다음 필요한 CSS를 IgcCarouselComponent 가져오고 다음과 같이 모듈을 등록해야 합니다.

    import { defineComponents, IgcCarouselComponent } from "igniteui-webcomponents";
    import 'igniteui-webcomponents/themes/light/bootstrap.css';
    
    defineComponents(IgcCarouselComponent);
    

    Ignite UI for Web Components 에 대한 전체 소개는 시작 항목을 참조하세요.

    이제 Ignite UI for Web Components Carousel을 가져왔으므로 및 해당 슬라이드의 IgcCarouselComponent 기본 구성부터 시작할 수 있습니다.

    선택기를 IgcCarouselComponent 사용하여 슬라이드를 래핑합니다. 슬라이드에는 다른 구성 요소를 포함하여 유효한 html 콘텐츠가 포함될 수 있습니다.

    <igc-carousel>
        <igc-carousel-slide>
            <img src="assets/images/carousel/ignite-ui-indigo-design.png"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/carousel/slider-image-chart.png"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/carousel/ignite-ui-charts.png"/>
        </igc-carousel-slide>
    </igc-carousel>
    

    슬라이드가 기본적으로 활성화되도록 하려면 다음 속성을 사용합니다 Active.

    <igc-carousel>
        ...
        <igc-carousel-slide>
            ...
        </igc-carousel-slide>
        <igc-carousel-slide active>
            ...
        </igc-carousel-slide>
    </igc-carousel>
    

    [!NOTE] If no active slide is set, the first one will be set by default. If there are multiple active slides on initial rendering or subsequent updates, only the last one will be taken into account.

    Examples

    기본적으로 의 IgcCarouselComponent​ ​disableLoop 속성은 false로 설정되어 있습니다(다음 작업을 사용하여 탐색하여 첫 번째 슬라이드가 마지막 슬라이드 뒤에 오거나 이전 작업을 사용하여 첫 번째 슬라이드 뒤에 올 때 반복이 발생합니다). 루핑 동작은 속성 값을 disableLoop​ ​true로 설정하여 비활성화할 수 있습니다.

    <igc-carousel disable-loop="true">
        ...
    </igc-carousel>
    

    각 슬라이드 인덱스를 추적하기 위해 캐러셀에는 기본적으로 캐러셀에 배치 end 되는 표시기가 있습니다. 이 동작을 변경하려면 속성을 사용하여 indicatorsOrientation 할당합니다 start.

    <igc-carousel indicators-orientation="start">
        ...
    </igc-carousel>
    

    기본적으로 탐색 IgcCarouselComponent 버튼과 표시기가 표시됩니다. hideIndicators이 속성을 사용하여 표시기를 숨기고 hideNavigation 속성을 사용하여 탐색 단추를 숨깁니다.

    <igc-carousel hide-navigation="true" hide-indicators="true">
        ...
    </igc-carousel>
    

    IgcCarouselComponent 수직 모드를 지원합니다. vertical 속성을 사용하여 사용하도록 설정합니다.

    <igc-carousel vertical="true">
        ...
    </igc-carousel>
    

    Custom indicators

    Web Components 사용자 지정 캐러셀 표시기를 추가하려면 다음을 사용합니다. IgcCarouselIndicatorComponent

    <igc-carousel>
        <igc-carousel-indicator>
            <span>🤍</span>
            <span slot="active">❤️</span>
        </igc-carousel-indicator>
        <igc-carousel-indicator>
            <span>🤍</span>
            <span slot="active">❤️</span>
        </igc-carousel-indicator>
    
        <igc-carousel-slide>
            <img src="assets/images/card/media/the_red_ice_forest.jpg"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/card/media/yosemite.jpg"/>
        </igc-carousel-slide>
    </igc-carousel>
    

    Ignite UI for Web Components Carousel 구성 요소를 사용하면 단일 지표의 활성 및 비활성 상태에 대해 서로 다른 요소를 사용할 수 있습니다. 인디케이터를 선언할 때 각 슬롯에 대해 두 개의 요소(empty 및 active)를 제공해야 하며, 이는 동일하더라도 마찬가지입니다.

    Custom navigation buttons

    이를 위해 및 next-button 슬롯을 previous-button 사용합니다.

    <igc-carousel>
        <igc-icon slot="previous-button" name="previous" collection="material"></igc-icon>
        <igc-icon slot="next-button" name="next" collection="material"></igc-icon>
        ...
    </igc-carousel>
    

    Slide containing other components

    이 캐러셀에는 양식과 이미지가 포함된 슬라이드가 포함됩니다.

    <igc-carousel>
        <igc-carousel-slide>
            <div>
                <img src="assets/images/svg/carousel/SignUp.svg"/>
                <form>
                    <igc-input type="text" placeholder="Username">
                        <igc-icon slot="prefix" name="person"></igc-icon>
                    </igc-input>
                    <igc-input type="password" placeholder="Password">
                        <igc-icon slot="prefix" name="password"></igc-icon>
                    </igc-input>
                    <igc-button type="reset">Sign In</igc-button>
                </form>
            </div>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <div>
                <img src="assets/images/svg/carousel/Route.svg"/>
                <form>
                    <igc-input type="text" placeholder="Search">
                        <igc-icon slot="prefix" name="search"></igc-icon>
                    </igc-input>
                    <igc-button type="reset">Search</igc-button>
                </form>
            </div>
        </igc-carousel-slide>
    </igc-carousel>
    

    데모

    Animations

    애니메이션 슬라이드 전환은 최종 사용자에게 회전판과 상호 작용할 때 좋은 경험을 제공합니다.

    캐러셀은 기본적으로 애니메이션을 slide 사용하도록 구성되지만 대체 애니메이션으로도 지원됩니다 fade.

    Use the animationType property to change the animation.

    <igc-carousel animation-type="fade">
        ...
    </igc-carousel>
    

    Setting none to the animationType property disables the animations.

    데모

    아래 데모는 캐러셀이 지원하는 다양한 유형의 애니메이션을 보여줍니다.

    전환 및 탐색은 캐러셀의 가장 중요한 기능입니다.

    캐러셀의 탐색은 사용자가 모바일 장치에서 탐색 버튼, 표시기, 키보드 탐색 및 터치 조작을 통해 처리할 수 있습니다.

    Touch gestures

    기본적으로 캐러셀은 모든 터치 지원 장치에서 사용할 수 있습니다.

    캐러셀 애니메이션은 터치 장치에서 완벽하게 지원되므로 캐러셀은 모든 플랫폼과 일관되고 프로그레시브 웹 애플리케이션(PWA)에서 사용될 때 훌륭합니다.

    키보드 탐색

    • 탐색 버튼
      • Space / Enter key - 다음/이전 슬라이드로 이동합니다.
    • 지표
      • Arrow Left 키 - 이전(오른쪽에서 왼쪽 모드에서 다음) 슬라이드로 이동합니다.
      • Arrow Right 키 - 다음(오른쪽에서 왼쪽 모드의 이전) 슬라이드로 이동합니다.
      • Home 키 - 첫 번째(오른쪽에서 왼쪽 모드의 마지막) 슬라이드로 이동합니다.
      • End 키 - 마지막(오른쪽에서 왼쪽 모드의 첫 번째) 슬라이드로 이동합니다.

    Automatic transitioning

    IgcCarouselComponent 사용자 상호 작용 없이 슬라이드를 자동으로 변경하도록 쉽게 구성할 수 있습니다. 이렇게 하면 속성에 대한 interval 전환 간격만 설정하여 자신만의 슬라이드 쇼를 만들 수 있으며, 이 간격은 슬라이드 전환 사이의 시간(밀리초)을 결정합니다.

    [!NOTE] Hovering the mouse over any carousel content or moving keyboard focus to any of the carousel content pauses automatic transitioning. Automatic transitioning resumes when the mouse moves away from the carousel or when keyboard focus moves out of the carousel content. This can be prevented by setting disablePauseOnInteraction property to true.

    <igc-carousel interval="2000" disable-pause-on-interaction="true">
        ...
    </igc-carousel>
    

    Advanced Example

    루핑이 활성화된 완전 자동화된 캐러셀을 만들어 보겠습니다. 표시기를 각 슬라이드의 썸네일 표현으로 구성합니다.

    이 목표를 달성하려면 캐러셀에 대해 다음 구성을 수행해야 합니다.

    캐러셀은 템플릿에서 다음과 같이 표시됩니다.

    <igc-carousel
        disable-pause-on-interaction="true"
        hide-navigation="true"
        vertical="true"
        interval="2000"
        animation-type="fade"
    >
        <igc-carousel-indicator>
            <img class="blurred" src="assets/images/carousel/WonderfulCoastThumb.png" width="50" height="60"/>
            <img slot="active" src="assets/images/carousel/WonderfulCoastThumb.png" width="50" height="60"/>
        </igc-carousel-indicator>
        <igc-carousel-indicator>
            <img class="blurred" src="assets/images/carousel/CulturalDipThumb.png" width="50" height="60"/>
            <img slot="active" src="assets/images/carousel/CulturalDipThumb.png" width="50" height="60"/>
        </igc-carousel-indicator>
        <igc-carousel-indicator>
            <img class="blurred" src="assets/images/carousel/GoldenBeachesThumb.png" width="50" height="60"/>
            <img slot="active" src="assets/images/carousel/GoldenBeachesThumb.png" width="50" height="60"/>
        </igc-carousel-indicator>
        <igc-carousel-indicator>
            <img class="blurred" src="assets/images/carousel/IslandOfHistoryThumb.png" width="50" height="60"/>
            <img slot="active" src="assets/images/carousel/IslandOfHistoryThumb.png" width="50" height="60"/>
        </igc-carousel-indicator>
        <igc-carousel-indicator>
            <img class="blurred" src="assets/images/carousel/AmazingBridgeThumb.png" width="50" height="60"/>
            <img slot="active" src="assets/images/carousel/AmazingBridgeThumb.png" width="50" height="60"/>
        </igc-carousel-indicator>
            
        <igc-carousel-slide>
            <img src="assets/images/carousel/WonderfulCoast.png"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/carousel/CulturalDip.png"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/carousel/GoldenBeaches.png"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/carousel/IslandOfHistory.png"/>
        </igc-carousel-slide>
        <igc-carousel-slide>
            <img src="assets/images/carousel/AmazingBridge.png"/>
        </igc-carousel-slide>
    </igc-carousel>
    

    이러한 구성의 결과는 다음과 같습니다.

    Accessibility

    WAI-ARIA Roles, States, and Properties

    • Carousel 기본 요소 역할은 특정 목적과 관련된 콘텐츠가 포함된 섹션인 region 이며 사용자는 쉽게 탐색할 수 있기를 원할 것입니다.
    • 캐러셀 표시기에는 역할 tab 있습니다. 사용자에게 렌더링할 탭 콘텐츠를 선택하기 위한 메커니즘을 제공하는 그룹화 레이블입니다.
    • 탭 집합(캐러셀 표시기)의 컨테이너 역할을 하는 요소는 역할 tablist이 있습니다.
    • 각 슬라이드 요소는 tabpanel 역할로 설정됩니다.

    ARIA support

    • Attributes
      • aria-roledescription을 "carousel"로 설정합니다.
      • aria-live- 스크린 리더가 라이브 영역에 대한 업데이트를 처리해야 하는 우선 순위를 설정하는 데 사용되며, 가능한 설정은 다음과 같습니다.offpolite. 기본 설정은 polite 이며 슬라이드 집합의 컨테이너 역할을 하는 요소로 설정됩니다. interval 옵션이 설정되고 캐러셀이 재생 중인 상태이면 aria-live 속성이 off로 설정됩니다.
      • aria-label (navigation buttons) - "Previous slide"/"Next slide".

    Slide component

    • Attributes
      • id - "igc-carousel-slide-${incremented_number}" 패턴을 따릅니다.
      • aria-roledescription을 "slide"로 설정합니다.
      • aria-label은 "${total}의 ${index + 1}" 패턴을 따릅니다.

    Indicator component

    • Attributes
      • aria-label은 "Slide ${index + 1}" 패턴을 따릅니다.
      • aria-selected는 활성 슬라이드에 따라 true 또는 false로 설정됩니다.

    API References

    Additional Resources