Swiper - v12.0.3
    Preparing search index...

    Interface A11yOptions

    interface A11yOptions {
        containerMessage?: string | null;
        containerRole?: string | null;
        containerRoleDescriptionMessage?: string | null;
        enabled?: boolean;
        firstSlideMessage?: string;
        id?: string | number | null;
        itemRoleDescriptionMessage?: string | null;
        lastSlideMessage?: string;
        nextSlideMessage?: string;
        notificationClass?: string;
        paginationBulletMessage?: string;
        prevSlideMessage?: string;
        scrollOnFocus?: boolean;
        slideLabelMessage?: string;
        slideRole?: string;
        wrapperLiveRegion?: boolean;
    }
    Index

    Properties

    containerMessage?: string | null

    Message for screen readers for outer swiper container

    null
    
    containerRole?: string | null

    Value of the "role" attribute to be set on the swiper container

    null
    
    containerRoleDescriptionMessage?: string | null

    Message for screen readers describing the role of outer swiper container

    null
    
    enabled?: boolean

    Enables A11y

    true
    
    firstSlideMessage?: string

    Message for screen readers for previous button when swiper is on first slide

    'This is the first slide'
    
    id?: string | number | null

    Value of id attribute to be set on swiper-wrapper. If null will be generated automatically

    null
    
    itemRoleDescriptionMessage?: string | null

    Message for screen readers describing the role of slide element

    null
    
    lastSlideMessage?: string

    Message for screen readers for next button when swiper is on last slide

    'This is the last slide'
    
    nextSlideMessage?: string

    Message for screen readers for next button

    'Next slide'
    
    notificationClass?: string

    CSS class name of A11y notification

    'swiper-notification'
    
    paginationBulletMessage?: string

    Message for screen readers for single pagination bullet

    'Go to slide {{index}}'
    
    prevSlideMessage?: string

    Message for screen readers for previous button

    'Previous slide'
    
    scrollOnFocus?: boolean

    Enables scrolling to the slide that has been focused

    true
    
    slideLabelMessage?: string

    Message for screen readers describing the label of slide element

    '{{index}} / {{slidesLength}}'
    
    slideRole?: string

    Value of swiper slide role attribute

    'group'
    
    wrapperLiveRegion?: boolean

    Whether or not the swiper-wrapper should have the aria-live attribute applied to it. If true, the value will be off when autoplay is enabled, otherwise it will be polite

    true