-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSSResizer.js
More file actions
305 lines (273 loc) · 8.6 KB
/
CSSResizer.js
File metadata and controls
305 lines (273 loc) · 8.6 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
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
/**!
* @license CSSResizer.js v2.3
* (c) 2014 Giuseppe Scotto Lavina <mailto:g.scotto@email.it>
* Available under MIT license
*/
;(function(
win, selectorStr, cssRulesStr, rulesStr, urlStr,
styleStr, mediaStr, nameStr, nullStr, bs, nillStr,
TRUE, FALSE, NULL, camelReg, doc, styleSheets
) {
"use strict"
var camelize = (function(cache, fn) {
return function camelize(str) {
str in cache || (cache[str] = str.replace(camelReg, fn))
return cache[str]
}
})({}, function replaceMatch(match, chr) {
return chr ? chr.toUpperCase() : nillStr
}),
parseVal = (function(
v, o, c
) {
var
ret = {},
idx = 0
return function parseVal(val) {
if((idx = val.indexOf(o)) >= 0) {
ret.pre = val.substr(0, idx + 1)
ret.val = val.substr(idx + 1)
} else {
ret.pre = nillStr
ret.val = val
}
if((idx = ret.val.indexOf(c)) >= 0 ||
(idx = ret.val.indexOf(v)) >= 0) {
ret.post = ret.val.substr(idx)
ret.val = ret.val.substr(0, idx)
} else
ret.post = nillStr
return ret
}
})(",", "(", ")"),
scaleImg = (function(can) {
var ctx = can.getContext("2d")
return function scaleImg(val, ratio, idx, fn) {
var
img = new Image(),
url = val.val,
pre = val.pre,
post = val.post
img.onload = function() {
var
width = round(this.width * ratio, 0),
height = round(this.height * ratio, 0)
can.width = width
can.height = height
ctx.drawImage(this, 0, 0, width, height)
fn(pre + can.toDataURL() + post, idx)
this.onerror =
this.onabort =
this.onload =
img = null
}
img.onerror = img.onabort = function() {
console.warn(url + " is unreachable!")
fn(pre + url + post, idx)
this.onerror =
this.onabort =
this.onload =
img = null
}
img.src = url
}
})(doc.createElement("canvas"))
function round(val, dec) {
var _dec = dec ? 10 * dec : 1
return ((0.5 + val * _dec) ^ 0) / _dec
}
function CSSResizer(options) {
return this.init(options)
}
CSSResizer.prototype = {
_scaleValue: function(style, cprop, value, ratio, fn) {
var
vVal = NULL,
pVal = nillStr,
sVal = nillStr,
unit = nillStr,
units = this.options.units,
aVal = value.split(bs),
idxV = aVal.length,
idxU = 0,
idxF = 0,
iVal = 0,
imgs = 0
for(; idxV-- && (vVal = parseVal(aVal[idxV])) && (pVal = vVal.val);)
if(this.options.scaleImages && vVal.pre.indexOf(urlStr) >= 0) {
if(ratio) {
imgs++
scaleImg(vVal, ratio, idxV, function(data, idx) {
aVal[idx] = data
if(!--imgs) {
style[cprop] = aVal.join(bs)
fn()
}
})
} else
return TRUE
} else
for(idxU = units.length; idxU-- && (unit = units[idxU]);)
if(
(idxF = pVal.indexOf(unit)) > 0 &&
idxF === pVal.length - unit.length &&
(sVal = pVal.substr(0, idxF)).length &&
(iVal = +sVal) == sVal && iVal
) {
if(ratio)
aVal[idxV] = vVal.pre +
round(iVal * ratio, 1) + unit +
vVal.post
else
return TRUE
}
if(!imgs && ratio) {
style[cprop] = aVal.join(bs)
fn()
}
return FALSE
},
_parseRule: function(cssRule, selector) {
var
styles = NULL,
value = nillStr,
cprop = nillStr,
prop = nillStr,
idxS = 0,
idxP = 0
if(!(selector in this.stylesCache))
this.stylesCache[selector] = []
if(styleStr in cssRule && (styles = cssRule.style) && styles.length) {
this.stylesCache[selector].push(styles)
for(idxS = styles.length; idxS-- && (prop = styles[idxS]);)
for(idxP = this.options.properties.length; idxP--;)
if(
prop.indexOf(this.options.properties[idxP]) >= 0 &&
(value = styles[(cprop = camelize(prop))]) &&
this._scaleValue(styles, cprop, value)
) {
if(!(selector in this.propsCache))
this.propsCache[selector] = {}
if(!(prop in this.propsCache[selector])) {
this.propsCache[selector][prop] = []
this.props2scale++
}
this.propsCache[selector][prop].push(value)
break
}
}
},
init: function(options) {
var
option = nillStr,
styleSheet = NULL,
cssRules = NULL,
cssRule = NULL,
subRules = NULL,
subRule = NULL,
idxSt = 0,
idxR = 0,
idxS = 0
this.destroy()
for(option in this.defaults) this.options[option] = this.defaults[option]
for(option in options) this.options[option] = options[option]
for(idxSt = styleSheets.length; idxSt--;) {
styleSheet = styleSheets[idxSt]
cssRulesStr in styleSheet && styleSheet.cssRules && (cssRules = styleSheet.cssRules)
rulesStr in styleSheet && styleSheet.rules && (cssRules = styleSheet.rules)
if(cssRules)
for(idxR = cssRules.length; idxR--;)
if((cssRule = cssRules[idxR]) && selectorStr in cssRule) //Normal Style
this._parseRule(cssRule, cssRule.selectorText)
else if(mediaStr in cssRule && cssRulesStr in cssRule) { //MediaQuery
if(this.options.matchMedia && !(matchMedia(cssRule.media.mediaText)).matches)
continue
cssRulesStr in cssRule && (subRules = cssRule.cssRules)
rulesStr in cssRule && (subRules = cssRule.rules)
for(idxS = subRules.length; idxS--;) {
subRule = subRules[idxS]
this._parseRule(subRule, subRule.selectorText)
}
} else if(nameStr in cssRule) { //FrameRule
cssRulesStr in cssRule && (subRules = cssRule.cssRules)
rulesStr in cssRule && (subRules = cssRule.rules)
for(idxS = subRules.length; idxS--;)
this._parseRule(subRules[idxS], cssRule.name)
} else { //FontFace ? Include ?
}
}
},
destroy: function() {
this.options = {}
this.propsCache = {}
this.stylesCache = {}
this.props2scale = 0
},
scale: function(ratio, fn) {
var
count = this.props2scale,
selector = nillStr,
cssText = nillStr,
prop = nillStr,
style = NULL,
props = NULL
for(selector in this.propsCache) {
props = this.propsCache[selector]
style = this.stylesCache[selector][0]
for(prop in props)
this._scaleValue(
style,
camelize(prop),
props[prop][0],
ratio,
function() {
!--count && fn && fn()
}
)
}
},
getStyle: function() {
var
selector = nillStr,
prop = nillStr,
buff = nillStr,
pre = NULL,
style = NULL,
props = NULL
this.cssWin && this.cssWin.close()
this.cssWin = win.open(nillStr, nillStr, "width=800,height=600")
this.cssWin.document.title = "style.css"
pre = doc.createElement("pre")
for(selector in this.propsCache) {
props = this.propsCache[selector]
style = this.stylesCache[selector]
if(!style.length)
console.warn(selector, style)
else {
buff = "\n" + selector + " {\n"
for(prop in props) buff += " " + prop + ": " + style[0][prop] + ";\n"
buff += "}\n"
pre.appendChild(doc.createTextNode(buff))
}
}
this.cssWin.document.body.appendChild(pre)
}
}
CSSResizer.prototype.defaults = {
matchMedia: FALSE,
scaleImages: TRUE,
properties: [
"top", "bottom", "left", "right", "width", "height",
"size", "transform", "position", "shadow", "spacing",
"indent", "align", "offset", "clip", "image", "column"
],
units: ["px", "cm", "mm", "em", "ex", "pt", "pc", "in"]
}
win.CSSResizer = CSSResizer
})(
this,
"selectorText", "cssRules", "rules", "url(",
"style", "media", "name", "null", " ", "",
true, false, null, /-+(.)?/g, document,
document.styleSheets
)