-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
614 lines (554 loc) · 22.6 KB
/
example.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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
<!doctype html>
<html lang="en" dir="ltr">
<head>
<title>TwengaCarousel</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="assets/global.css" media="screen" />
<link rel="stylesheet" type="text/css" href="assets/twCarousel.css" media="screen" />
<script type="text/javascript" src="twCarousel.js"></script>
<script>
window.onload = function(){
/* Demo exemple 1 */
allnodeExample1 = twCarousel.getElementsByClassName(document.body,"example1");
twCarousel.carouselize({noeud:allnodeExample1});
/* Demo exemple 2 */
allnodeExample2 = twCarousel.getElementsByClassName(document.body,"example2");
twCarousel.carouselize({
noeud:allnodeExample2,
btNext:"arrowNext",
btPrev:"arrowPrev"
});
/* Demo exemple 3 */
allnodeExample3 = twCarousel.getElementsByClassName(document.body,"example3");
thumbnail3 = twCarousel.getElementsByClassName(document.body,"thumbs");
twCarousel.carouselize({
noeud:allnodeExample3,
thumbnail:thumbnail3
});
/* Démo exemple 4 */
allnodeExample4 = twCarousel.getElementsByClassName(document.body,"example4");
twCarousel.carouselize({
noeud:allnodeExample4,
timer:1000
});
/* Démo exemple 5 */
allnodeExample5 = twCarousel.getElementsByClassName(document.body,"example5");
thumbnail4 = twCarousel.getElementsByClassName(document.body,"thumbs2");
twCarousel.carouselize({
noeud:allnodeExample5,
thumbnail:thumbnail4,
thumbHover:1
});
/* Démo exemple 6 */
allnodeExample6 = twCarousel.getElementsByClassName(document.body,"example6");
twCarousel.carouselize({
noeud:allnodeExample6,
endRotation: 14000
});
/* Démo exemple 7 */
allnodeExample7 = twCarousel.getElementsByClassName(document.body,"example7");
thumbnail1 = twCarousel.getElementsByClassName(document.body,"thumbs1");
twCarousel.carouselize({
noeud:allnodeExample7,
thumbnail:thumbnail1,
btNext:"arrowNext0",
btPrev:"arrowPrev0",
interactStopAll: 1
});
/* Démo exemple 8 */
allnodeExample8 = twCarousel.getElementsByClassName(document.body,"example8");
twCarousel.carouselize({
noeud:allnodeExample8,
AnimFrequency:100,
AnimSplitdistance:2
});
/* Démo exemple 9 */
allnodeExample9 = twCarousel.getElementsByClassName(document.body,"example9");
thumbnail3 = twCarousel.getElementsByClassName(document.body,"thumbs3");
twCarousel.carouselize({
noeud:allnodeExample9,
thumbnail:thumbnail3,
btNext:"arrowNext1",
btPrev:"arrowPrev1",
compteur:"counterIndicator"
});
}
</script>
<!--[if IE 6]>
<script defer type="text/javascript" src="ressources/js/pngfix.js"></script>
<![endif]-->
</head>
<body class="dossier">
<!--[if IE 6]>
<div id="ie6">
<![endif]-->
<!--[if IE]>
<div id="ie">
<![endif]-->
<header>
<div class="header summary">
<p>
Showcase of TwCarousel, plugin javascript for a carousel.<br />
Its main interest is to <strong>not</strong> using the jQuery library !
</p>
</div>
<a href="https://github.com/korvus/twCarousel">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub">
</a>
</header>
<div id="conteneur">
<div id="frame">
<div class="boxe">
<h2>twCarousel</h2>
<menu>
<li><a href="#part1">What is it?</a></a></li>
<li><a href="#part2">compatibility</a></li>
<li><a href="#part3">Simple example</a></li>
<li><a href="#part4">Options & Parameters</a></li>
<li><a href="#part5">Public functions in the plugin</a></li>
<li><a href="#part6">More examples</a></li>
<li><a href="#part7">Contact</a></li>
</menu>
<h2 id="part1">Carousel Plugin</h2>
<p>
<strong>twCarousel</strong> is a javascript carousel plugin that allow you to scroll some medias
formated in an html list elements, pictures, text or whatever. His particularity is
it's in pure javascript, concepted at the origins for replace the plugin
<a target="_blank" href="http://jquery.malsup.com/cycle2/demo/carousel.php">Cycle</a>, during the
suppression of the dependancy library, the famous jQuery.
But in order to be efficient, the plugin keep only necessary functions matching for aim.
</p>
<h2 id="part2">Compatibility.</h2>
<p>
Usable and testable from ie7, firefox 23.0.1, Opéra 12.16, Safari 4.0.2 and Chrome 28.0.1500.95 m
</p>
<h2 id="part3">Using it.</h2>
<h3>Simple example :</h3>
<div id="example1">
<div class="example1"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example1"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example1"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example1"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example1"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
<h3>Le HTML :</h3>
<pre>
<span class="color0"><div id="example1"></span>
<span class="color1"><div class="example1"></span>
<img width="100" height="36" alt="" src="assets/img/pic0.png" />
<span class="color1"></div></span>
<span class="color1"><div class="example1"></span>
<img width="100" height="36" alt="" src="assets/img/pic1.png" />
<span class="color1"></div></span>
<span class="color1"><div class="example1"></span>
<img width="100" height="36" alt="" src="assets/img/pic2.png" />
<span class="color1"></div></span>
<span class="color1"><div class="example1"></span>
<img width="100" height="36" alt="" src="assets/img/pic3.png" />
<span class="color1"></div></span>
<span class="color1"><div class="example1"></span>
<img width="100" height="36" alt="" src="assets/img/pic4.png" />
<span class="color1"></div></span>
<span class="color0"></div></span>
</pre>
<h3>Javascript :</h3>
<pre>
allnodeExample1 = twCarousel.getElementsByClassName(document.body,<span class="color1">"example1"</span>);
twCarousel.carouselize({noeud:allnodeExample1});
</pre>
<h3>CSS :</h3>
<pre>
<span class="color0">#example1</span>{width:100px;height:45px;overflow:hidden;border:1px solid #555;}
<span class="color1">.example1</span>{width:100px;}
</pre>
<h3>Principes :</h3>
<ul>
<li>
For HTML structure, a wrap div <i>(#example1)</i> contain a child list of elements <i>(.example1)</i>.
This child list can include any kind of html element you want.
</li>
<li>
In javascript, after the script is call (<script src="yourpath/twCarousel.js"></script>)
the plugin est in the "twCarousel" object, having several methods, holding <span class="color1">getElementsByClassName</span> method,
allowing you to get and stock the list of child element you want to scroll.
You just have to pass the classname in parameter of "noeud" (french for node).
</li>
<li>
in CSS, you just have to put a fix value for width and height to the parent element,
and it will be the "window" where elements will scroll.
Each child node should be have the same width, or it will outweight the window.
</li>
</ul>
<h2 id="part4">Options and parameters</h2>
<p>
There is enough parameters for deal interactions with a meter,
some thumbnails, arrows and some others.
</p>
<ul class="params">
<li>
<a>
<strong>noeud</strong>
(Fr. for "node")- An object listing DOM node intended to scroll.
</a>
</li>
<li>
<a href="#thumbnails">
<strong>thumbnail</strong>
Object listing DOM node intended to be use as thumbnails.
An automatic class <i>"activeSlide"</i> is automaticaly affect to the focused element.
</a>
</li>
<li>
<a href="#thumbhover">
<strong>thumbHover</strong>
Boolean value for setting an event mouseover on the thumbnails.
thumbnail parameter should be previously set for this parameter work.
</a>
</li>
<li>
<a href="#endrotation">
<strong>endRotation</strong>
Time in milliseconds until when rotation stop.
By default, animation never end.
</a>
</li>
<li>
<a href="#counter">
<strong>compteur</strong>
(fr. for counter in the sense meter)-
String with the ID attribute where the current slide number will be display.
</a>
</li>
<li>
<a href="#prev_next">
<strong>btNext</strong>
String with the ID of the DOM node on user will engage action "next slide".
</a>
</li>
<li>
<a href="#prev_next">
<strong>btPrev</strong>
String with the ID of the DOM node on user will engage action "previous slide".
</a>
</li>
<li>
<a href="#timer">
<strong>timer</strong>
Time in milliseconds between two scroll actions. By default, set to 2000.
</a>
</li>
<li>
<a href="#interactionstopeverything">
<strong>interactStopAll</strong>
Boolean value for indicate if twCarousel should stop when user click
on any of the user interfaces elements, including arrows or thumbnails.
</a>
</li>
<li>
<a href="#speedparams">
<strong>AnimFrequency</strong>
Time in milliseconds, wich is the frequency using for the elements scrolling.
By default, set to 30.
</a>
</li>
<li>
<a href="#speedparams">
<strong>AnimSplitdistance</strong>
Numerical value indicating distance in pixel, each slide doing during the
animation in the time interval eventually setted just previoulsy (AnimFrequency).
By default, setted to 1 pixel.
This value is automaticaly auto increment during the animation, with
1 pixel adding each interval time.
</a>
</li>
</ul>
<h2 id="part5">Functions added</h2>
<p>
For twCarousel work, some very useful functions similar to some jQuery ones has been added.
So, you can use it automaticaly in your project too if you include the twCarousel script.
</p>
<ul class="params">
<li>
<pre>twCarousel.getElementsByClassName = function(wrapNode, classname)</pre>
<ul>
<li><strong>wrapNode</strong> :
the parent DOM object from search will be crawl (can be useful for avoiding to crawl the full DOM document).
</li>
<li><strong>classname</strong> : string of the classname you search.</li>
<li><strong>action</strong> : sent you the nodeDom object.</li>
</ul>
</li>
<li>
<pre>twCarousel.setCssAttribute = function(domNode, keyValue)</pre>
<ul>
<li><strong>domNode</strong> : domNode object you want to edit CSS.</li>
<li><strong>keyValue</strong> : a string containing the CSS couple key/value you want to use. For an example : "position:absolute;left:25px;"</li>
<li><strong>action</strong> : Will attribute this CSS to the DomNode you targeted, avoiding to clone property if some is already define online.</li>
</ul>
</li>
<li>
<pre>twCarousel.addClass = function(nodeToCheck, cl)</pre>
<ul>
<li><strong>nodeToCheck</strong> : domNode object you want to add a classname.</li>
<li><strong>cl</strong> : the string with classname you want.</li>
<li><strong>action</strong> : will add the classname on the nodeDom you targeted.</li>
</ul>
</li>
<li>
<pre>twCarousel.removeClass = function(nodeToCheck, cl)</pre>
<ul>
<li><strong>nodeToCheck</strong> : target a nodeDom object you want to remove a class, and remove this class.</li>
<li><strong>cl</strong> : string with the classname to remove.</li>
<li><strong>action</strong> : Will remove the className from the node.</li>
</ul>
</li>
<li>
<pre>twCarousel.attachAnEvent = function(evName,NId,fnName)</pre>
<ul>
<li><strong>evName</strong> :
String contening <a target="_blank" href="http://www.w3.org/TR/DOM-Level-3-Events/#event-definitions">DOM event</a> name.
Ex : "mouseover". Warning, the compatibility cross browser is not manage, except for the click event.
It mean the difference "click"/"onclick" is manage, for others events, you have to be carreful or you can edit the plugin.</li>
<li><strong>NId</strong> : the ID string you will associate to the event.</li>
<li><strong>fnName</strong> : The function you will associate to the event.</li>
<li><strong>action</strong> : Will allow you to associate a domNode and an event, for making any function you want.</li>
</ul>
</li>
<li>
<pre>twCarousel.detachAnEvent = function(evName,NId,fnName)</pre>
<ul>
<li><strong>evName</strong> : A string with the event you want dissociate from a function you had previously associate with attachAnEvent.</li>
<li><strong>NId</strong> : The domNode oject you want to dissociate.</li>
<li><strong>fnName</strong> : The function name you want to dissociate from the event.</li>
<li><strong>action</strong> : Will allow you do dissociate an event from a domNode.</li>
</ul>
</li>
</ul>
<h2 id="part6">Examples</h2>
<div class="part" id="prev_next">
<p>With buttons for scrolling to next and previous.</p>
<div class="demo">
<div id="arrowPrev" class="arr"></div>
<div id="arrowNext" class="arr"></div>
<div class="windows" id="example2">
<div class="example example2"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example2"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example2"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example2"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example2"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
</div>
<pre>
allnodeExample2 = twCarousel.getElementsByClassName(document.body,"example2");
twCarousel.carouselize({
noeud:allnodeExample2,
<span class="color1">btNext:"arrowNext",
btPrev:"arrowPrev"</span>
});
</pre>
</div>
<div class="part" id="timer">
<p>twCarousel with shorter show time for each slide.</p>
<div class="demo">
<div class="windows" id="example4">
<div class="example example4"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example4"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example4"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example4"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example4"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
</div>
<pre>
allnodeExample4 = twCarousel.getElementsByClassName(document.body,"example4");
twCarousel.carouselize({
noeud:allnodeExample4,
<span class="color1">timer:1000</span>
});
</pre>
</div>
<div class="part" id="thumbnails">
<p>With thumbnails (you can click it by default)</p>
<div class="demo">
<div class="windows" id="example3">
<div class="example example3"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example3"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example3"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example3"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example3"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
<div class="thumbnails">
<span class="thumbs c1" title="pic"></span>
<span class="thumbs c2" title="pic"></span>
<span class="thumbs c3" title="pic"></span>
<span class="thumbs c4" title="pic"></span>
<span class="thumbs c5" title="pic"></span>
</div>
</div>
<pre>
allnodeExample3 = twCarousel.getElementsByClassName(document.body,"example3");
<span class="color1">thumbnail3 = twCarousel.getElementsByClassName(document.body,"thumbs");</span>
twCarousel.carouselize({
noeud:allnodeExample3,
<span class="color1">thumbnail:thumbnail3</span>
});</pre>
</div>
<div class="part" id="thumbhover">
<p>With thumbnails (this time display in text) reacting to rollover</p>
<div class="demo">
<div class="windows" id="example5">
<div class="example example5"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example5"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example5"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example5"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example5"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
<div class="thumbnails0">
<span class="thumbs2" title="Twenga">Twenga</span>
<span class="thumbs2" title="Tangou">Tangou</span>
<span class="thumbs2" title="Showcase">Showcase</span>
<span class="thumbs2" title="AffinitAd">AffinitAd</span>
<span class="thumbs2" title="AdExMachina">AdExMachina</span>
</div>
</div>
<pre>
allnodeExample5 = twCarousel.getElementsByClassName(document.body,"example5");
<span class="color0">thumbnail4 = twCarousel.getElementsByClassName(document.body,"thumbs2");</span>
twCarousel.carouselize({
noeud:allnodeExample5,
<span class="color0">thumbnail:thumbnail4,</span>
<span class="color1">thumbHover:true</span>
});
</pre>
</div>
<div class="part" id="endrotation">
<p>With a timer ending twCarousel after 14 seconds.</p>
<div class="demo">
<div class="windows" id="example6">
<div class="example example6"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example6"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example6"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example6"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example6"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
</div>
<pre>
allnodeExample6 = twCarousel.getElementsByClassName(document.body,"example6");
twCarousel.carouselize({
noeud:allnodeExample6,
<span class="color1">endRotation: 14000</span>
});
</pre>
</div>
<div class="part" id="interactionstopeverything">
<p>
After click on thumbnails or arrows, animation ending.
</p>
<div class="demo">
<div id="arrowPrev0" class="arr"></div>
<div id="arrowNext0" class="arr"></div>
<div class="windows" id="example7">
<div class="example example7"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example7"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example7"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example7"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example7"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
<div class="thumbnails1">
<span class="thumbs1 c1" title="affinitAd"></span>
<span class="thumbs1 c5" title="Twenga"></span>
<span class="thumbs1 c2" title="Tangou"></span>
<span class="thumbs1 c3" title="Showcase"></span>
<span class="thumbs1 c4" title="AdExMachina"></span>
</div>
</div>
<pre>
allnodeExample7 = twCarousel.getElementsByClassName(document.body,"example7");
<span class="color0">thumbnail1 = twCarousel.getElementsByClassName(document.body,"thumbs1");</span>
twCarousel.carouselize({
noeud:allnodeExample7,
<span class="color0">thumbnail:thumbnail1,
btNext:"arrowNext0",
btPrev:"arrowPrev0",</span>
<span class="color1">interactStopAll: true</span>
});
</pre>
</div>
<div class="part" id="speedparams">
<p>Exemple d'utilisation des paramètres AnimSplitdistance et AnimFrequency.</p>
<div class="demo">
<div class="windows" id="example8">
<div class="example example8"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example8"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example8"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example8"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example8"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
</div>
<pre>
allnodeExample8 = twCarousel.getElementsByClassName(document.body,"example8");
twCarousel.carouselize({
noeud:allnodeExample8,
<span class="color1">AnimFrequency:100,
AnimSplitdistance:2</span>
});
</pre>
</div>
<div class="part" id="counter">
<p>
Example with counter, displaying the current active slide.</p>
<div class="demo">
<div id="arrowPrev1" class="arr"></div>
<div id="arrowNext1" class="arr"></div>
<div class="windows" id="example9">
<div class="example example9"><img width="100" height="21" alt="" src="assets/img/pic0.png" /></div>
<div class="example example9"><img width="100" height="45" alt="" src="assets/img/pic1.png" /></div>
<div class="example example9"><img width="100" height="16" alt="" src="assets/img/pic2.png" /></div>
<div class="example example9"><img width="100" height="29" alt="" src="assets/img/pic3.png" /></div>
<div class="example example9"><img width="100" height="36" alt="" src="assets/img/pic4.png" /></div>
</div>
<div class="thumbnails2">
<span class="thumbs3 c1" title="Twenga"></span>
<span class="thumbs3 c2" title="Tangou"></span>
<span class="thumbs3 c3" title="Showcase"></span>
<span class="thumbs3 c4" title="AffinitAd"></span>
<span class="thumbs3 c5" title="AdExMachina"></span>
</div>
<div class="compteur">
<div class="color1" id="counterIndicator">1</div>/5
</div>
</div>
<pre>
allnodeExample9 = twCarousel.getElementsByClassName(document.body,"example9");
thumbnail3 = twCarousel.getElementsByClassName(document.body,"thumbs3");
twCarousel.carouselize({
noeud:allnodeExample9,
thumbnail:thumbnail3,
btNext:"arrowNext1",
btPrev:"arrowPrev1",
<span class="color1">compteur:"counterIndicator"</span>
});
</pre>
</div>
<h2 id="part7">About</h2>
<div class="part">
<a href="mailto:[email protected]">contact me</a><br />
<a target="_blank" href="https://github.com/korvus">github account</a><br />
<a target="_blank" href="twenga.com">Twenga</a><br />
<a target="_blank" href="http://simonertel.net">Simon Ertel</a>
</div>
<!-- = Fin boxe ======================================================== -->
</div>
</div>
</div>
<footer>
<div class="footer">
</div>
</footer>
<!--[if IE 6]>
</div>
<![endif]-->
<!--[if IE ]>
</div>
<![endif]-->
</body>
</html>