保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 23b60dc1975db38c280d8a123aff97544d1673e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
import Swiper, { DOM7Element } from '../index';
 
// Reexport everything from `swiper` except the default export of the
// `Swiper` class, which is instead provided as a named export by
// `swiper.esm`.
export * from '../index';
export { Swiper };
 
/*
 * Swiper exports the following as ES5 module (in swiper.esm.js).
 */
 
/**
 * Virtual Slides module.
 */
export class Virtual {
    /**
     * Object with cached slides HTML elements
     */
    cache: object;
 
    /**
     * Index of first rendered slide
     */
    from: number;
 
    /**
     * Index of last rendered slide
     */
    to: number;
 
    /**
     * Array with slide items passed by virtual.slides parameter
     */
    slides: any[];
 
    /*
     * Methods
     */
 
    /**
     * Add new slides to the end. slides could be HTMLElement or HTML string with new slide or array
     * with such slides, for example:
     *
     * @example
     * mySwiper.appendSlide('<div class="swiper-slide">Slide 10"</div>')
     * mySwiper.appendSlide([
     *   '<div class="swiper-slide">Slide 10"</div>',
     *   '<div class="swiper-slide">Slide 11"</div>'
     * ]);
     */
    appendSlide(slide: HTMLElement | string): void;
 
    /**
     * Add new slides to the beginning. slides could be HTMLElement or HTML string with new slide or
     * array with such slides, for example:
     *
     * @example
     * mySwiper.prependSlide('<div class="swiper-slide">Slide 0"</div>')
     * mySwiper.prependSlide([
     * '<div class="swiper-slide">Slide 1"</div>',
     * '<div class="swiper-slide">Slide 2"</div>'
     * ]);
     */
    prependSlide(slide: HTMLElement | string): void;
 
    /**
     * Update virutal slides state
     */
    update(): void;
}
 
/**
 * Keyboard Control module.
 */
export class Keyboard {
    /**
     * Whether the keyboard control is enabled
     */
    enabled: boolean;
 
    // Methods
    /**
     * Enable keyboard control
     */
    enable(): void;
 
    /**
     * Disable keyboard control
     */
    disable(): void;
}
 
/**
 * Mousewheel Control module.
 */
export class Mousewheel {
    /**
     * Whether the mousewheel control is enabled
     */
    enabled: boolean;
 
    // Methods
    /**
     * Enable mousewheel control
     */
    enable(): void;
 
    /**
     * Disable mousewheel control
     */
    disable(): void;
}
 
/**
 * Navigation module.
 */
export class Navigation {
    /**
     * HTMLElement of "next" navigation button
     */
    nextEl: HTMLElement;
 
    /**
     * HTMLElement of "previous" navigation button
     */
    prevEl: HTMLElement;
 
    /**
     * Update navigation buttons state (enabled/disabled)
     */
    update(): void;
}
 
/**
 * Pagination module.
 */
export class Pagination {
    /**
     * HTMLElement of pagination container element
     */
    el: HTMLElement;
 
    /**
     * Dom7 array-like collection of pagination bullets
     * HTML elements. To get specific slide HTMLElement
     * use `mySwiper.pagination.bullets[1]`.
     */
    bullets: DOM7Element[];
 
    /**
     * Render pagination layout
     */
    render(): void;
 
    /**
     * Update pagination state (enabled/disabled/active)
     */
    update(): void;
}
 
/**
 * Scrollbar module.
 */
export class Scrollbar {
    // Properties
    /**
     * HTMLElement of Scrollbar container element
     */
    el: HTMLElement;
 
    /**
     * HTMLElement of Scrollbar draggable handler element
     */
    dragEl: HTMLElement;
 
    // Methods
    /**
     * Updates scrollbar track and handler sizes
     */
    updateSize(): void;
}
 
/**
 * Parallax module.
 */
export class Parallax { }
 
/**
 * Zoom module.
 */
export class Zoom {
    /**
     * Whether the zoom module is enabled
     */
    enabled: boolean;
 
    /**
     * Current image scale ratio
     */
    scale: number;
 
    /**
     * Enable zoom module
     */
    enable(): void;
 
    /**
     * Disable zoom module
     */
    disable(): void;
 
    /**
     * Zoom in image of the currently active slide
     */
    in(): void;
 
    /**
     * Zoom out image of the currently active slide
     */
    out(): void;
 
    /**
     * Toggle image zoom of the currently active slide
     */
    toggle(): void;
}
 
/**
 * Lazy module.
 */
export class Lazy {
    /**
     * Load/update lazy images based on current slider state (position)
     */
    load(): void;
 
    /**
     * Force to load lazy images in slide by specified index
     * @param number index number of slide to load lazy images in
     */
    loadInSlide(index: number): void;
}
 
/**
 * Controller module.
 */
export class Controller {
    /**
     * Pass here another Swiper instance or array with Swiper instances that should be controlled
     * by this Swiper
     */
    control?: Swiper | Swiper[] | undefined;
}
 
/**
 * Accessibility module (a11y$)
 */
export class A11y { }
 
/**
 * History Navigation module.
 */
export class History { }
 
/**
 * Hash Navigation module.
 */
export class HashNavigation {
}
 
/**
 * Autoplay module.
 */
export class Autoplay {
    // Properties
    /**
     * Whether autoplay enabled and running
     */
    running: boolean;
 
    // Methods
    /**
     * Start autoplay
     */
    start(): boolean;
 
    /**
     * Stop autoplay
     */
    stop(): boolean;
}
 
/**
 * Fade Effect module.
 */
export class EffectFade { }
 
/**
 * Cube Effect module.
 */
export class EffectCube { }
 
/**
 * Flip Effect module.
 */
export class EffectFlip { }
 
/**
 * Coverflow Effect module.
 */
export class EffectCoverflow { }