forked from jonathantneal/MediaClass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMediaClass.js
133 lines (110 loc) · 4.81 KB
/
MediaClass.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
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
/*! MediaClass.js v0.0.1 | MIT License | github.com/jonathantneal/MediaClass */
(function (global, documentElement) {
function resetMediaFeatures() {
if(global.resetTimer) clearTimeout(global.resetTimer);
global.resetTimer = setTimeout(getMediaFeatures, 100);
}
function getMediaFeatures() {
media.width = global.innerWidth || documentElement.clientWidth;
media.height = global.innerHeight || documentElement.clientHeight;
media.aspectRatio = media.width / media.height;
media.orientation = media.width > media.height ? "landscape" : "portrait";
media.deviceWidth = screen.width;
media.deviceHeight = screen.height;
media.deviceAspectRatio = media.deviceWidth / media.deviceHeight;
media.deviceOrientation = media.deviceWidth > media.deviceHeight ? "landscape" : "portrait";
mediaLoop();
}
function getElementMediaFeatures(element) {
var coordinates = element.getBoundingClientRect();
media.thisWidth = coordinates.width || coordinates.right - coordinates.left;
media.thisHeight = coordinates.height || coordinates.bottom - coordinates.top;
media.thisAspectRatio = media.thisWidth / media.thisHeight,
media.thisOrientation = media.thisWidth > media.thisHeight ? "landscape" : "portrait";
}
function evalMediaQuery(query) {
return Function("d", "return(" + query
.replace(/\(|\)/g, "")
.replace(/\s*,\s*/g, ") || (")
.replace(/\s+and\s+/gi, " && ")
.replace(/min-(.*?):/gi, "$1>=")
.replace(/max-(.*?):/gi, "$1<=")
.replace(/above-(.*?):/gi, "$1>")
.replace(/below-(.*?):/gi, "$1<")
.replace(/min-|max-/gi, "")
.replace(/(all|screen|print)/, "d.$1")
.replace(/:/g, "==")
.replace(/([\w-]+)\s*([<>=]+)\s*(\w+)/g, function ($0, $1, $2, $3) {
return "d." + toCamelCase($1) + $2 + parseCSSNumber($3);
})
.replace(/([<>=]+)([A-z][\w-]*)/g, '$1"$2"') + ")")(media);
}
function toCamelCase(value) {
return value.toLowerCase().replace(/-[a-z]/g, function ($0) {
return $0[1].toUpperCase();
});
}
function parseCSSNumber(value) {
return value.replace(/([\d\.]+)(%|em|in|pt|px)/, function ($0, $1, $2) {
return ($2 == "em") ? $1 * 16 : ($2 == "in") ? $1 * 96 : ($2 == "pt") ? $1 * 96 / 72 : ($2 == "%") ? $1 / (scope.innerWidth || documentElement.clientWidth) : $1;
});
}
var
media = { all: true, screen: true, print: false },
eventMethod = ("addEventListener" in global ? "addEventListener " : "attachEvent on").split(" "),
eventType = "blur orientationchange click".split(" "),
throttledEventType = "resize scroll".split(" "),
eventIndex = 0;
for (; eventType[eventIndex]; ++eventIndex) {
global[eventMethod[0]](eventMethod[1] + eventType[eventIndex], getMediaFeatures);
}
for (eventIndex = 0; throttledEventType[eventIndex]; ++eventIndex) {
global[eventMethod[0]](eventMethod[1] + throttledEventType[eventIndex], resetMediaFeatures);
}
var
LastIndexOf = Array.prototype.lastIndexOf || function (value) { for (var length = this.length; --length > -1;) if (this[length] == value) break; return length; },
addClass = function (element, className) {
var classList = element.className ? element.className.split(/\s+/) : [], index = LastIndexOf.call(classList, className);
if (index < 0) element.className = classList.concat(className).join(" ");
},
removeClass = function (element, className) {
var classList = element.className ? element.className.split(/\s+/) : [], index = LastIndexOf.call(classList, className);
if (index > -1 && classList.splice(index, 1)) element.className = classList.join(" ");
},
mediaList = [];
function mediaLoop() {
for (var i = 0, item, match, element; item = mediaList[i]; ++i) {
match = item.media.match(/(.+?):media\((.+?)\)/);
if (match) {
if (documentElement.querySelectorAll) {
all = documentElement.querySelectorAll(match[1]);
for (var index = 0; element = all[index]; ++index) {
/this/.test(match[2]) && getElementMediaFeatures(element);
if(element.clientWidth > 0) {
evalMediaQuery(match[2]) ? addClass(element, item.className) : removeClass(element, item.className);
}
}
}
} else {
if(element.clientWidth > 0) {
evalMediaQuery(item.media) ? addClass(documentElement, item.className) : removeClass(documentElement, item.className);
}
}
}
}
function MediaQuery(className, mediaQuery) {
var self = this, enabled = 1;
self.className = className;
self.media = mediaQuery;
self.index = mediaList.push(self) - 1;
self.enable = function () { if (!enabled) { self.index = mediaList.push(self) - 1; enabled = true; } };
self.disable = function () { if (enabled) { mediaList.splice(self.index, 1); enabled = false; } };
self.refresh = function() { mediaLoop(); };
}
global.MediaClass = function (className, mediaQuery) {
var mq = new MediaQuery(className, mediaQuery);
mediaLoop();
return mq;
};
getMediaFeatures();
})(this, document.documentElement);