forked from alainyog/JavaScript.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.js
More file actions
156 lines (117 loc) · 3.46 KB
/
Copy pathvideo.js
File metadata and controls
156 lines (117 loc) · 3.46 KB
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
// *************************************
//
// Video
// -> Homepage video modal
//
// *************************************
//
// @param $element { jQuery object }
// @param $trigger { jQuery object }
// @param $video { jQuery object }
// @param $close { jQuery object }
// @param $overlay { jQuery object }
// @param overlayNode { string (selector) }
// @param closeNode { string (selector) }
// @param activeClass { string }
//
// *************************************
JS.Modules.Video = (function() {
// -------------------------------------
// Private Variables
// -------------------------------------
var _settings = {};
var _video = null;
// -------------------------------------
// Initialize
// -------------------------------------
var init = function(options) {
_settings = $.extend({
$element : $('body'),
$trigger : $('.js-video-trigger'),
$video : $('.js-video-element'),
$close : $('<a href="#" class="video-close js-video-close" aria-label="close">×</a>'),
$overlay : $('<div class="video-overlay js-video-overlay"></div>'),
overlayNode : '.js-video-overlay',
closeNode : '.js-video-close',
activeClass : 'is-video-playing'
}, options);
_video = _settings.$video[0];
_setEventHandlers();
};
// -------------------------------------
// Set Event Handlers
// -------------------------------------
var _setEventHandlers = function() {
// ----- Click: Hover ----- //
_settings.$trigger.on('mouseover', function(event) {
_settings.$video.attr('preload', 'true');
});
// ----- Click: Trigger ----- //
_settings.$trigger.on('click', function(event) {
event.preventDefault();
_toggle('open');
});
// ----- Click: Close ----- //
$(document).on('click', _settings.closeNode, function(event) {
event.preventDefault();
_toggle('close');
});
// ----- Click: Overlay ----- //
$(document).on('click', _settings.overlayNode, function(event) {
_toggle('close');
});
// ----- Keydown: Escape ----- //
$(document).on('keydown', function(event) {
switch (event.which) {
case 27:
_toggle('close');
break;
}
});
};
// -------------------------------------
// Toggle
// -------------------------------------
var _toggle = function(state) {
switch(state) {
case 'open':
_settings.$element.prepend(_settings.$overlay);
_settings.$overlay.prepend(_settings.$close);
setTimeout(function() {
_settings.$element.addClass(_settings.activeClass);
}, 200);
setTimeout(function() {
_play();
}, 1000);
break;
case 'close':
_settings.$element.removeClass(_settings.activeClass);
_pause();
break;
}
};
// -------------------------------------
// Play
// -------------------------------------
var _play = function() {
_video.play();
};
// -------------------------------------
// Pause
// -------------------------------------
var _pause = function() {
_video.pause();
};
// -------------------------------------
// Stop
// -------------------------------------
var _stop = function() {
_video.stop();
};
// -------------------------------------
// Public Methods
// -------------------------------------
return {
init : init
};
})();