forked from rmurphey/jqfundamentals
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathslideshow.js
59 lines (49 loc) · 1.36 KB
/
slideshow.js
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
'use strict';
class slideShow{
constructor()
{
this.speed=1000;
this.$slideElements = $("#slideshow")
this.init();
}
init()
{
const total = this.$slideElements.find('li').length;
const $span = $('<span />')
.addClass('currentIndex')
.text(`1`);
const $div = $('<div />')
.addClass('slideNavigation')
.html(` of ${total}`)
.prepend($span)
.insertBefore('#header');
this.$slideElements.prependTo('body');
const $items = this.$slideElements.find('li').hide();
this.$slideElements.find('p').css({'width': '60%', 'text-align': 'justify'});
this.showInitialSlide($items); }
showInitialSlide($items)
{
$items.first().fadeIn(this.speed, function() {
this.doSlideShow();
}.bind(this)).delay(1000);
}
doSlideShow() {
const $visible = this.$slideElements.find('li:visible');
let $next = $visible.next();
($next.length) ? $next : ($next = this.$slideElements.find('li').first());
$visible.fadeOut(1000, function() {
$next.fadeIn(this.speed).delay(200);
});
this.showCurrentSlide();
setTimeout(function() {
this.doSlideShow();
}.bind(this), 300);
}
showCurrentSlide() {
const current = this.$slideElements.find('li:visible').index() + 1;
$('span.currentIndex').html(`${current}`);
}
}
$(function() {
new slideShow();
});