forked from scerickson/covervid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
covervid.js
73 lines (57 loc) · 1.72 KB
/
covervid.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
var coverVid = function (elem, width, height) {
// call sizeVideo on load
document.addEventListener('DOMContentLoaded', sizeVideo);
// debounce for resize function
function debounce(fn, delay) {
var timer = null;
return function () {
var context = this,
args = arguments;
window.clearTimeout(timer);
timer = window.setTimeout(function () {
fn.apply(context, args);
}, delay);
};
}
// call sizeVideo on resize
window.onresize = function () {
debounce(sizeVideo(), 50);
};
// Set necessary styles to position video "center center"
elem.style.position = 'absolute';
elem.style.top = '50%';
elem.style.left = '50%';
elem.style['-webkit-transform'] = 'translate(-50%, -50%)';
elem.style['-ms-transform'] = 'translate(-50%, -50%)';
elem.style.transform = 'translate(-50%, -50%)';
// Set overflow hidden on parent element
elem.parentNode.style.overflow = 'hidden';
// Define the attached selector
function sizeVideo() {
// Get parent element height and width
var parentHeight = elem.parentNode.offsetHeight;
var parentWidth = elem.parentNode.offsetWidth;
// Get native video width and height
var nativeWidth = width;
var nativeHeight = height;
// Get the scale factors
var heightScaleFactor = parentHeight / nativeHeight;
var widthScaleFactor = parentWidth / nativeWidth;
// Based on highest scale factor set width and height
if (widthScaleFactor > heightScaleFactor) {
elem.style.height = 'auto';
elem.style.width = parentWidth+'px';
} else {
elem.style.height = parentHeight+'px';
elem.style.width = 'auto';
}
}
};
if (window.jQuery) {
jQuery.fn.extend({
'coverVid': function () {
coverVid(this[0], arguments[0], arguments[1]);
return this;
}
});
}