This repository has been archived by the owner on Apr 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
/
jquery.BlackAndWhite.js
executable file
·381 lines (344 loc) · 12.8 KB
/
jquery.BlackAndWhite.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
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
/**
*
* Version: 0.3.8
* Author: Gianluca Guarini
* Contact: [email protected]
* Website: http://www.gianlucaguarini.com/
* Twitter: @gianlucaguarini
*
* Copyright (c) Gianluca Guarini
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
**/
(function ($) {
$.fn.extend({
BlackAndWhite: function (customOptions) {
'use strict';
var $el = this,
/**
*
* Options
*
*/
options = $.extend({
hoverEffect: true,
webworkerPath: false,
invertHoverEffect: false,
speed: 500,
onImageReady: null,
intensity: 1,
crossOrigin: true
}, customOptions),
// options shorthand
hoverEffect = options.hoverEffect,
webworkerPath = options.webworkerPath,
invertHoverEffect = options.invertHoverEffect,
intensity = (typeof options.intensity === 'number' && options.intensity < 1 && options.intensity > 0) ? options.intensity : 1,
fadeSpeedIn = $.isPlainObject(options.speed) ? options.speed.fadeIn : options.speed,
fadeSpeedOut = $.isPlainObject(options.speed) ? options.speed.fadeOut : options.speed,
$window = $(window),
/**
*
* Private vars
*
*/
_evtNamespace = '.BlackAndWhite',
_isIE7 = (document.all && !window.opera && window.XMLHttpRequest) ? true : false,
_browserPrefixes = ' -webkit- -moz- -o- -ms- '.split(' '),
_cssPrefixString = {},
/**
*
* features detection
*
*/
_cssPrefix = function (property) {
if (_cssPrefixString[property] || _cssPrefixString[property] === '') {
return _cssPrefixString[property] + property;
}
var e = document.createElement('div'),
prefixes = ['', 'Moz', 'Webkit', 'O', 'ms', 'Khtml']; // Various supports...
for (var i in prefixes) {
if (typeof e.style[prefixes[i] + property] !== 'undefined') {
_cssPrefixString[property] = prefixes[i];
return prefixes[i] + property;
}
}
return property.toLowerCase();
},
// https://github.com/Modernizr/Modernizr/blob/master/feature-detects/css-filters.js
_cssfilters = (function () {
var el = document.createElement('div');
el.style.cssText = _browserPrefixes.join('filter' + ':blur(2px); ');
return !!el.style.length && ((document.documentMode === undefined || document.documentMode > 9));
}()),
_supportsCanvas = !!document.createElement('canvas').getContext,
/* Check if Web Workers are supported */
_supportWebworker = (function () {
return (typeof (Worker) !== 'undefined') ? true : false;
}()),
_cssFilter = _cssPrefix('Filter'),
_imagesArray = [],
_webWorker = _supportWebworker && webworkerPath ? new Worker(webworkerPath + 'BnWWorker.js') : false,
/**
*
* Private methods
*
*/
/**
* Mouse leave event callback delegated to the the images container
* @param { Object } e jquery event object
*/
_onMouseLeave = function (e) {
$(e.currentTarget)
.find('.BWfade')
.stop(true, true)
.animate({
opacity: invertHoverEffect ? 0 : 1
}, fadeSpeedOut);
},
/**
* mouseenter event callback delegated to the the images container ($el)
* @param { Object } e jquery event object
*/
_onMouseEnter = function (e) {
$(e.currentTarget)
.find('.BWfade')
.stop(true, true)
.animate({
opacity: invertHoverEffect ? 1 : 0
}, fadeSpeedIn);
},
/**
* Callback triggered anytime an image gets loaded and converted
* @param { Object } img: DOM image object
*/
_onImageReady = function (img) {
if (typeof options.onImageReady === 'function') {
options.onImageReady(img);
}
},
/**
* Initialize the webworker loop
* @param { Int } imagesToLoadlength: the amount of images passed to the plugin but not loaded yet
*/
_initWebworker = function (imagesToLoadlength) {
// start the webworker when all the images are ready
if (_webWorker && _supportsCanvas && !_cssfilters && !imagesToLoadlength) {
// web worker implementation
_webWorkerLoop();
}
},
/**
* Loop all the images converting them by using the a webworker script (this process is unobstrusive and it does not block the page loading)
*/
_webWorkerLoop = function () {
if (!_imagesArray.length) {
// terminate the worker
// the standard way - http://www.w3.org/TR/workers/#dedicated-workers-and-the-worker-interface
if (_webWorker.terminate) {
_webWorker.terminate();
}
// IE 10 specific - http://msdn.microsoft.com/en-us/library/ie/hh673568(v=vs.85).aspx
if (_webWorker.close) {
_webWorker.close();
}
return;
}
// dispatch the image data to the webworker
_webWorker.postMessage({
imgData: _imagesArray[0].imageData,
intensity: intensity
});
// anytime a new image gets converted we continue the loop
_webWorker.onmessage = function (event) {
_imagesArray[0].ctx.putImageData(event.data, 0, 0);
_onImageReady(_imagesArray[0].img);
_imagesArray.splice(0, 1);
_webWorkerLoop();
};
},
/**
* Helper function to check whether an image has been completely loaded
* @param { Object } img: DOM image object
*/
_isImageLoaded = function (img) {
return img.complete || (typeof img.naturalWidth !== 'undefined' && img.naturalWidth);
},
/**
* Use the HTML5 canvas to generate a B&W image
* @param { Object } img: DOM image object
* @param { Object } canvas: canvas element where we are going to draw
* @param { Int } width: image width
* @param { Int } height: image height
*/
_generateCanvasImage = function (img, canvas, width, height) {
var ctx = canvas.getContext('2d'),
currImg = img,
i = 0,
grey;
ctx.drawImage(img, 0, 0, width, height);
var imageData = ctx.getImageData(0, 0, width, height),
px = imageData.data,
length = px.length;
// web worker superfast implementation
if (_webWorker) {
_imagesArray.push({
imageData: imageData,
ctx: ctx,
img: img
});
} else {
// no webworker slow implementation
for (; i < length; i += 4) {
var k = px[i] * 0.3 + px[i + 1] * 0.59 + px[i + 2] * 0.11;
px[i] = ~~(k * intensity + px[i] * (1 - intensity));
px[i + 1] = ~~(k * intensity + px[i + 1] * (1 - intensity));
px[i + 2] = ~~(k * intensity + px[i + 2] * (1 - intensity));
}
ctx.putImageData(imageData, 0, 0);
_onImageReady(img);
}
},
/**
* Print the html element needed to show the B&W image
* @param { Array } $img: jQuery array containing the image
* @param { Array } $imageWrapper: jQuery array containing the image parent element
*/
_injectTags = function ($img, $imageWrapper) {
var img = $img[0],
src = img.src,
offset = $img.position(),
css = {
top: offset.top,
left: offset.left,
position: 'absolute',
'-webkit-transform': 'translate3d(0,0,0)', // fix for webkit browsers
opacity: invertHoverEffect ? 0 : 1
},
$overlay;
if (options.crossOrigin) {
img.crossOrigin = 'anonymous';
}
if (_supportsCanvas && !_cssfilters) {
// add the canvas
$overlay = $('<canvas width="' + img.naturalWidth + '" height="' + img.naturalHeight + '" class="BWfade"></canvas>');
css.width = $img.width();
css.height = $img.height();
_generateCanvasImage(img, $overlay.get(0), img.naturalWidth, img.naturalHeight);
} else {
// it's a modern browser but it doesn't support the css filters
if (_supportsCanvas) {
css[_cssFilter] = 'grayscale(' + intensity * 100 + '%)';
} else {
// it's an old IE
css.filter = 'progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)';
}
// clone the original image using the css filters
$overlay = $img.clone().addClass('BWFilter BWfade');
_onImageReady(img);
}
$overlay
.css(css)
.prependTo($imageWrapper);
// fix opacity on the old browsers
if (!$.support.opacity && invertHoverEffect) {
$overlay.animate({
opacity: 0
}, 0);
}
},
_resizeCanvases = function () {
$el.each(function (index, currImageWrapper) {
var img = $(currImageWrapper).find('img'),
currWidth = $(img).width(),
currHeight = $(img).height();
$(this).find('canvas').css({
width: currWidth,
height: currHeight
});
});
},
/**
* Init the plugin stuff
*/
_init = function () {
var imagesToLoadlength = $el.find('img').filter(function () {
return !$(this).data('_b&w');
}).length;
// convert all the images
$el.each(function (index, tmpImageWrapper) {
var $imageWrapper = $(tmpImageWrapper),
$img = $imageWrapper.find('img');
// this image got already converted
if ($img.data('_b&w')) {
return;
}
// if this image is not loaded yet
if (!_isImageLoaded($img[0])) {
$img.on('load', function () {
if ($img.data('_b&w_loaded') || !$img[0].complete) {
setTimeout(function () {
$img.load();
}, 20);
return;
}
_injectTags($img, $imageWrapper);
$img.data('_b&w_loaded', true);
imagesToLoadlength--;
_initWebworker(imagesToLoadlength);
}).load();
} else {
imagesToLoadlength--;
_injectTags($img, $imageWrapper);
}
$img.data('_b&w', true);
});
_initWebworker(imagesToLoadlength);
// binding the hover effect
if (hoverEffect) {
$el
.unbind(_evtNamespace)
.on('mouseleave' + _evtNamespace, _onMouseLeave)
.on('mouseenter' + _evtNamespace, _onMouseEnter);
}
if (_supportsCanvas && !_cssfilters) {
$window
.unbind(_evtNamespace)
.on('resize' + _evtNamespace + ' orientationchange' + _evtNamespace, _resizeCanvases);
}
};
/**
*
* Public Api
*
*/
var destroy = function () {
$el.off(_evtNamespace);
$window.off(_evtNamespace);
};
_init();
return {
destroy: destroy
};
}
});
}(jQuery));