| 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 : |
import type Swiper from '../swiper-class.d.ts';
export interface ControllerMethods {
/**
* Pass here another Swiper instance or array with Swiper instances that should be controlled
* by this Swiper
*/
control?: Swiper | Swiper[];
}
export interface ControllerEvents {}
export interface ControllerOptions {
/**
* Pass here another Swiper instance or array with Swiper instances that should be controlled
* by this Swiper. Also accepts string with CSS selector of Swiper element, or HTMLElement of Swiper element
*/
control?: Swiper | Swiper[] | string | HTMLElement | null;
/**
* Set to `true` and controlling will be in inverse direction
*
* @default false
*/
inverse?: boolean;
/**
* Defines a way how to control another slider: slide by slide
* (with respect to other slider's grid) or depending on all slides/container
* (depending on total slider percentage).
*
* @default 'slide'
*/
by?: 'slide' | 'container';
}