This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
475 lines (451 loc) · 15.5 KB
/
index.html
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A11y Carousel</title>
<link rel="stylesheet" href="src/doc.css">
</head>
<body>
<div class="container">
<header>
<h1>A11y Carousel</h1>
</header>
<main>
<p class="lead">
The accessible slideshow / carousel you've always dreamed of <small>(or may be it's just me)</small>
</p>
<div id="demo">
<div>
<div>
<div class="media" style="background-image: url('https://picsum.photos/400/300?random=1')"></div>
<div class="caption">
<h2>Accessible</h2>
<p>A11y Carousel is fully accessible with the keyboard and has the right aria attributes. The carousel is based on <a href="https://www.w3.org/TR/wai-aria-practices/examples/carousel/carousel-1.html">the example provided by the W3C</a>.</p>
</div>
</div>
</div>
<div>
<div>
<div class="media" style="background-image: url('https://picsum.photos/400/300?random=2')"></div>
<div class="caption">
<h2>IE 10 Compatible</h2>
<p>A11y Carousel support all browsers even that ugly duck. Because you and me know your clients are still on IE.</p>
</div>
</div>
</div>
<div>
<div>
<div class="media" style="background-image: url('https://picsum.photos/400/300?random=3')"></div>
<div class="caption">
<h2>Vanilla JavaScript</h2>
<p>No jQuery here, no dependecie either, just the JS you love <3. Also only 14.5 KB!</p>
</div>
</div>
</div>
</div>
<h2 id="how">How to use it?</h2>
<h3>HTML</h3>
<pre><code class="html"><div id="my-slider">
<div> <!-- ⚠ Don't apply css to the div -->
<!-- Slider 1 Content -->
</div>
<div>
<!-- Slider 2 Content -->
</div>
<div>
<!-- Slider 3 Content -->
</div>
</div>
<!-- At the end of the body tag -->
<script src="path/a11y-carousel.min.js"></script></code></pre>
<h3>JS</h3>
<pre><code class="javascript">var slider = new A11yCarousel("#my-slider", { // Use an ID not a class
// Your settings
dots: true,
className: 'my-super-slider',
ariaLabel: 'News Highlights'
});</code></pre>
<h2 id="settings">Settings</h2>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>
Name
</th>
<th>
Default
</th>
<th>
Infos
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
autoplay
</td>
<td>
true (bool)
</td>
<td>
Enables autoplay
</td>
</tr>
<tr>
<td>
autoplaySpeed
</td>
<td>
7000 (int)
</td>
<td>
Autoplay Speed in milliseconds
</td>
</tr>
<tr>
<td>
transitionSpeed
</td>
<td>
300 (int)
</td>
<td>
Transition speed in milliseconds (the fade effect)
</td>
</tr>
<tr>
<td>
arrows
</td>
<td>
true (bool)
</td>
<td>
Enables previous and next buttons
</td>
</tr>
<tr>
<td>
dots
</td>
<td>
false (bool)
</td>
<td>
Enables slide pagination
</td>
</tr>
<tr>
<td>
sliderIndex
</td>
<td>
0 (int)
</td>
<td>
From where the slider start
</td>
</tr>
<tr>
<td>
width
</td>
<td>
auto (string)
</td>
<td>
If you want to fix the width
</td>
</tr>
<tr>
<td>
height
</td>
<td>
auto (string)
</td>
<td>
If you want to fix the height
</td>
</tr>
<tr>
<td>
gesture
</td>
<td>
true (bool)
</td>
<td>
Enables swipe left and right on mobile
</td>
</tr>
<tr>
<td>
pauseOnHover
</td>
<td>
true (bool)
</td>
<td>
Pause the slider on hover or focus
</td>
</tr>
<tr>
<td>
className
</td>
<td>
a11y-carousel
</td>
<td>
Class name for the wrapper of your slider and controls
</td>
</tr>
<tr>
<td>
ariaRoledescriptionCarousel
</td>
<td>
carousel (string)
</td>
<td>
Attribute aria-roledescription
</td>
</tr>
<tr>
<td>
ariaRoledescriptionSlide
</td>
<td>
slide (string)
</td>
<td>
Attribute aria-roledescription for the slide. This attribute is only used if there's no pagination (dots)
</td>
</tr>
<tr>
<td>
ariaLabel
</td>
<td>
Slideshow (string)
</td>
<td>
What's in your carousel? Example : News Highlights
</td>
</tr>
<tr>
<td>
playText
</td>
<td>
Start slide show (string)
</td>
<td>
Text to start the slide show (screen reader)
</td>
</tr>
<tr>
<td>
pauseText
</td>
<td>
Stop slide show (string)
</td>
<td>
Text to stop/pause the slide show (screen reader)
</td>
</tr>
<tr>
<td>
previousText
</td>
<td>
Previous (string)
</td>
<td>
Text for the button preivous
</td>
</tr>
<tr>
<td>
nextText
</td>
<td>
Next (string)
</td>
<td>
Text for the button preivous
</td>
</tr>
<tr>
<td>
ofText
</td>
<td>
of (string)
</td>
<td>
Text for the aria-label of the slide.<br>
aria-label="1 of 5"
</td>
</tr>
<tr>
<td>
slideText
</td>
<td>
Slide (string)
</td>
<td>
Text for the pagination (dots).<br>
Slide X
</td>
</tr>
<tr>
<td>
tablistText
</td>
<td>
Choose slide to display (string)
</td>
<td>
Text for the aria-label of the pagination (dots)
</td>
</tr>
</tbody>
</table>
</div>
<h2 id="starter">SASS Starter</h2>
<p>Because I'm nice, here is a sass starter width Font Awesome 5 Free:</p>
<div id="slideshow">
<div>
<h3>Slide 1</h3>
</div>
<div>
<h3>Slide 2</h3>
</div>
<div>
<h3>Slide 3</h3>
</div>
</div>
<pre style="margin-top:3rem; max-height: 18.75rem; overflow-y: scroll;"><code class="sass"> // 1rem -> 16px
.slideshow {
position: relative;
button {
cursor: pointer;
appearance: none;
border: 0;
box-shadow: 0;
background: white;
border-radius: 0;
font-size: 0;
line-height: 0;
color: transparent;
&:after {
display: inline-block;
font-size: 1.5rem;
color: black;
line-height: 1;
font-weight: 700;
font-family: "Font Awesome 5 Free";
}
&:hover,
&:focus {
background: black;
&:after {
color: white;
}
}
}
[id*="play"] {
position: absolute;
z-index: 10;
top: 0;
left: 0;
width: 3rem;
height: 3rem;
&:after {
content: "\f04c";
}
&.paused {
&:after {
content: "\f04b";
}
}
}
[id*="prev"],
[id*="next"] {
position: absolute;
z-index: 10;
top: 50%;
left: 0;
width: 3rem;
height: 3rem;
transform: translateY(-50%);
&:after {
content: "\f060";
}
}
[id*="next"] {
left: auto;
right: 0;
&:after {
content: "\f061";
}
}
.dots {
position: absolute;
z-index: 10;
left: 0;
right: 0;
bottom: 0.625rem;
text-align: center;
button {
background: transparent;
&:after {
color: white;
content: "\f111";
}
&.active {
&:after {
font-weight: normal;
content: "\f111";
}
}
&:hover,
&:focus {
&::after {
color: black;
}
}
}
}
}</code></pre>
</main>
<footer>
Made with 🍟 by <a href="https://github.com/hotgeart">hotgeart</a>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/highlight.min.js"></script>
<script src="dist/a11y-carousel.min.js?20200514"></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
var slider = new A11yCarousel("#demo", {
dots: true,
className: 'demo-slider',
ariaLabel: 'Demo Slider'
});
var starter = new A11yCarousel("#slideshow", {
dots: true,
className: 'slideshow',
ariaLabel: 'Demo Slider for SASS Starter'
});
hljs.initHighlightingOnLoad();
});
</script>
</body>
</html>