| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/framework7/node_modules/swiper/types/modules/ |
Upload File : |
export interface A11yMethods {}
export interface A11yEvents {}
export interface A11yOptions {
/**
* Enables A11y
*
* @default true
*/
enabled?: boolean;
/**
* Message for screen readers for previous button
*
* @default 'Previous slide'
*/
prevSlideMessage?: string;
/**
* Message for screen readers for next button
*
* @default 'Next slide'
*/
nextSlideMessage?: string;
/**
* Message for screen readers for previous button when swiper is on first slide
*
* @default 'This is the first slide'
*/
firstSlideMessage?: string;
/**
* Message for screen readers for next button when swiper is on last slide
*
* @default 'This is the last slide'
*/
lastSlideMessage?: string;
/**
* Message for screen readers for single pagination bullet
*
* @default 'Go to slide {{index}}'
*/
paginationBulletMessage?: string;
/**
* CSS class name of A11y notification
*
* @default 'swiper-notification'
*/
notificationClass?: string;
/**
* Message for screen readers for outer swiper container
*
* @default null
*/
containerMessage?: string | null;
/**
* Message for screen readers describing the role of outer swiper container
*
* @default null
*/
containerRoleDescriptionMessage?: string | null;
/**
* Message for screen readers describing the role of slide element
*
* @default null
*/
itemRoleDescriptionMessage?: string | null;
/**
* Message for screen readers describing the label of slide element
*
* @default '{{index}} / {{slidesLength}}'
*/
slideLabelMessage?: string;
/**
* Value of swiper slide `role` attribute
*
* @default 'group'
*/
slideRole?: string;
/**
* Value of `id` attribute to be set on swiper-wrapper. If `null` will be generated automatically
*
* @default null
*/
id?: string | number | null;
/**
* Enables scrolling to the slide that has been focused
*
* @default true
*/
scrollOnFocus?: boolean;
}