3 Holder - 2.2 - client side image placeholders
4 (c) 2012-2013 Ivan Malopinsky / http://imsky.co
6 Provided under the MIT License.
7 Commercial use requires attribution.
11 var Holder = Holder || {};
12 (function (app, win) {
14 var preempted = false,
16 canvas = document.createElement('canvas');
18 var resizable_images = [];
20 if (!canvas.getContext) {
23 if (canvas.toDataURL("image/png")
24 .indexOf("data:image/png") < 0) {
25 //Android doesn't support data URI
28 var ctx = canvas.getContext("2d");
33 dpr = window.devicePixelRatio || 1,
34 bsr = ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1;
37 var ratio = dpr / bsr;
50 background: "#3a5a97",
55 background: "#434A52",
56 foreground: "#C2F200",
60 background: "#0D8FDB",
65 background: "#39DBAC",
66 foreground: "#1E292C",
70 background: "#F8591A",
71 foreground: "#1C2846",
79 regex: /^(\d+)x(\d+)$/,
80 output: function (val) {
81 var exec = this.regex.exec(val);
89 regex: /^([0-9%]+)x([0-9%]+)$/,
90 output: function (val) {
91 var exec = this.regex.exec(val);
99 regex: /#([0-9a-f]{3,})\:#([0-9a-f]{3,})/i,
100 output: function (val) {
101 var exec = this.regex.exec(val);
103 size: settings.themes.gray.size,
104 foreground: "#" + exec[2],
105 background: "#" + exec[1]
111 output: function (val) {
112 return this.regex.exec(val)[1];
117 output: function (val) {
118 return this.regex.exec(val)[1];
125 regex: /textmode\:(.*)/,
126 output: function(val){
127 return this.regex.exec(val)[1];
132 //getElementsByClassName polyfill
133 document.getElementsByClassName||(document.getElementsByClassName=function(e){var t=document,n,r,i,s=[];if(t.querySelectorAll)return t.querySelectorAll("."+e);if(t.evaluate){r=".//*[contains(concat(' ', @class, ' '), ' "+e+" ')]",n=t.evaluate(r,t,null,0,null);while(i=n.iterateNext())s.push(i)}else{n=t.getElementsByTagName("*"),r=new RegExp("(^|\\s)"+e+"(\\s|$)");for(i=0;i<n.length;i++)r.test(n[i].className)&&s.push(n[i])}return s})
135 //getComputedStyle polyfill
136 window.getComputedStyle||(window.getComputedStyle=function(e){return this.el=e,this.getPropertyValue=function(t){var n=/(\-([a-z]){1})/g;return t=="float"&&(t="styleFloat"),n.test(t)&&(t=t.replace(n,function(){return arguments[2].toUpperCase()})),e.currentStyle[t]?e.currentStyle[t]:null},this})
138 //http://javascript.nwbox.com/ContentLoaded by Diego Perini with modifications
139 function contentLoaded(n,t){var l="complete",s="readystatechange",u=!1,h=u,c=!0,i=n.document,a=i.documentElement,e=i.addEventListener?"addEventListener":"attachEvent",v=i.addEventListener?"removeEventListener":"detachEvent",f=i.addEventListener?"":"on",r=function(e){(e.type!=s||i.readyState==l)&&((e.type=="load"?n:i)[v](f+e.type,r,u),!h&&(h=!0)&&t.call(n,null))},o=function(){try{a.doScroll("left")}catch(n){setTimeout(o,50);return}r("poll")};if(i.readyState==l)t.call(n,"lazy");else{if(i.createEventObject&&a.doScroll){try{c=!n.frameElement}catch(y){}c&&o()}i[e](f+"DOMContentLoaded",r,u),i[e](f+s,r,u),n[e](f+"load",r,u)}}
141 //https://gist.github.com/991057 by Jed Schmidt with modifications
142 function selector(a){
143 a=a.match(/^(\W)?(.*)/);var b=document["getElement"+(a[1]?a[1]=="#"?"ById":"sByClassName":"sByTagName")](a[2]);
144 var ret=[]; b!==null&&(b.length?ret=b:b.length===0?ret=b:ret=[b]); return ret;
147 //shallow object property extend
148 function extend(a,b){
151 if(a.hasOwnProperty(i)){
156 if(b.hasOwnProperty(i)){
163 //hasOwnProperty polyfill
164 if (!Object.prototype.hasOwnProperty)
165 /*jshint -W001, -W103 */
166 Object.prototype.hasOwnProperty = function(prop) {
167 var proto = this.__proto__ || this.constructor.prototype;
168 return (prop in this) && (!(prop in proto) || proto[prop] !== this[prop]);
170 /*jshint +W001, +W103 */
172 function text_size(width, height, template) {
173 height = parseInt(height, 10);
174 width = parseInt(width, 10);
175 var bigSide = Math.max(height, width)
176 var smallSide = Math.min(height, width)
178 var newHeight = Math.min(smallSide * 0.75, 0.75 * bigSide * scale);
180 height: Math.round(Math.max(template.size, newHeight))
184 function draw(args) {
186 var dimensions = args.dimensions;
187 var template = args.template;
188 var ratio = args.ratio;
189 var holder = args.holder;
190 var literal = holder.textmode == "literal";
191 var exact = holder.textmode == "exact";
193 var ts = text_size(dimensions.width, dimensions.height, template);
194 var text_height = ts.height;
195 var width = dimensions.width * ratio,
196 height = dimensions.height * ratio;
197 var font = template.font ? template.font : "sans-serif";
198 canvas.width = width;
199 canvas.height = height;
200 ctx.textAlign = "center";
201 ctx.textBaseline = "middle";
202 ctx.fillStyle = template.background;
203 ctx.fillRect(0, 0, width, height);
204 ctx.fillStyle = template.foreground;
205 ctx.font = "bold " + text_height + "px " + font;
206 var text = template.text ? template.text : (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height));
208 var dimensions = holder.dimensions;
209 text = dimensions.width + "x" + dimensions.height;
211 else if(exact && holder.exact_dimensions){
212 var dimensions = holder.exact_dimensions;
213 text = (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height));
215 var text_width = ctx.measureText(text).width;
216 if (text_width / width >= 0.75) {
217 text_height = Math.floor(text_height * 0.75 * (width / text_width));
219 //Resetting font size if necessary
220 ctx.font = "bold " + (text_height * ratio) + "px " + font;
221 ctx.fillText(text, (width / 2), (height / 2), width);
222 return canvas.toDataURL("image/png");
225 function render(mode, el, holder, src) {
227 var dimensions = holder.dimensions,
228 theme = holder.theme,
229 text = holder.text ? decodeURIComponent(holder.text) : holder.text;
230 var dimensions_caption = dimensions.width + "x" + dimensions.height;
231 theme = (text ? extend(theme, {
234 theme = (holder.font ? extend(theme, {
237 el.setAttribute("data-src", src);
238 holder.theme = theme;
239 el.holder_data = holder;
241 if (mode == "image") {
242 el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption);
243 if (fallback || !holder.auto) {
244 el.style.width = dimensions.width + "px";
245 el.style.height = dimensions.height + "px";
248 el.style.backgroundColor = theme.background;
250 el.setAttribute("src", draw({ctx: ctx, dimensions: dimensions, template: theme, ratio:ratio, holder: holder}));
252 if(holder.textmode && holder.textmode == "exact"){
253 resizable_images.push(el);
254 resizable_update(el);
258 } else if (mode == "background") {
260 el.style.backgroundImage = "url(" + draw({ctx:ctx, dimensions: dimensions, template: theme, ratio: ratio, holder: holder}) + ")";
261 el.style.backgroundSize = dimensions.width + "px " + dimensions.height + "px";
263 } else if (mode == "fluid") {
264 el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption);
265 if (dimensions.height.slice(-1) == "%") {
266 el.style.height = dimensions.height
268 el.style.height = dimensions.height + "px"
270 if (dimensions.width.slice(-1) == "%") {
271 el.style.width = dimensions.width
273 el.style.width = dimensions.width + "px"
275 if (el.style.display == "inline" || el.style.display === "" || el.style.display == "none") {
276 el.style.display = "block";
279 el.style.backgroundColor = theme.background;
281 resizable_images.push(el);
282 resizable_update(el);
287 function dimension_check(el, callback) {
289 height: el.clientHeight,
290 width: el.clientWidth
292 if (!dimensions.height && !dimensions.width) {
293 if (el.hasAttribute("data-holder-invisible")) {
294 throw new Error("Holder: placeholder is not visible");
296 el.setAttribute("data-holder-invisible", true)
297 setTimeout(function () {
298 callback.call(this, el)
303 el.removeAttribute("data-holder-invisible")
308 function resizable_update(element) {
310 if (element.nodeType == null) {
311 images = resizable_images;
315 for (var i in images) {
316 if (!images.hasOwnProperty(i)) {
320 if (el.holder_data) {
321 var holder = el.holder_data;
322 var dimensions = dimension_check(el, resizable_update)
325 el.setAttribute("src", draw({
327 dimensions: dimensions,
328 template: holder.theme,
333 if(holder.textmode && holder.textmode == "exact"){
334 holder.exact_dimensions = dimensions;
335 el.setAttribute("src", draw({
337 dimensions: holder.dimensions,
338 template: holder.theme,
348 function parse_flags(flags, options) {
350 theme: extend(settings.themes.gray, {})
353 for (sl = flags.length, j = 0; j < sl; j++) {
355 if (app.flags.dimensions.match(flag)) {
357 ret.dimensions = app.flags.dimensions.output(flag);
358 } else if (app.flags.fluid.match(flag)) {
360 ret.dimensions = app.flags.fluid.output(flag);
362 } else if (app.flags.textmode.match(flag)) {
363 ret.textmode = app.flags.textmode.output(flag)
364 } else if (app.flags.colors.match(flag)) {
365 ret.theme = app.flags.colors.output(flag);
366 } else if (options.themes[flag]) {
367 //If a theme is specified, it will override custom colors
368 if(options.themes.hasOwnProperty(flag)){
369 ret.theme = extend(options.themes[flag], {});
371 } else if (app.flags.font.match(flag)) {
372 ret.font = app.flags.font.output(flag);
373 } else if (app.flags.auto.match(flag)) {
375 } else if (app.flags.text.match(flag)) {
376 ret.text = app.flags.text.output(flag);
379 return render ? ret : false;
382 for (var flag in app.flags) {
383 if (!app.flags.hasOwnProperty(flag)) continue;
384 app.flags[flag].match = function (val) {
385 return val.match(this.regex)
388 app.add_theme = function (name, theme) {
389 name != null && theme != null && (settings.themes[name] = theme);
392 app.add_image = function (src, el) {
393 var node = selector(el);
395 for (var i = 0, l = node.length; i < l; i++) {
396 var img = document.createElement("img")
397 img.setAttribute("data-src", src);
398 node[i].appendChild(img);
403 app.run = function (o) {
406 var options = extend(settings, o),
410 if (typeof (options.images) == "string") {
411 imageNodes = selector(options.images);
412 } else if (window.NodeList && options.images instanceof window.NodeList) {
413 imageNodes = options.images;
414 } else if (window.Node && options.images instanceof window.Node) {
415 imageNodes = [options.images];
418 if (typeof (options.bgnodes) == "string") {
419 bgnodes = selector(options.bgnodes);
420 } else if (window.NodeList && options.elements instanceof window.NodeList) {
421 bgnodes = options.bgnodes;
422 } else if (window.Node && options.bgnodes instanceof window.Node) {
423 bgnodes = [options.bgnodes];
425 for (i = 0, l = imageNodes.length; i < l; i++) images.push(imageNodes[i]);
426 var holdercss = document.getElementById("holderjs-style");
428 holdercss = document.createElement("style");
429 holdercss.setAttribute("id", "holderjs-style");
430 holdercss.type = "text/css";
431 document.getElementsByTagName("head")[0].appendChild(holdercss);
433 if (!options.nocss) {
434 if (holdercss.styleSheet) {
435 holdercss.styleSheet.cssText += options.stylesheet;
437 holdercss.appendChild(document.createTextNode(options.stylesheet));
440 var cssregex = new RegExp(options.domain + "\/(.*?)\"?\\)");
441 for (var l = bgnodes.length, i = 0; i < l; i++) {
442 var src = window.getComputedStyle(bgnodes[i], null)
443 .getPropertyValue("background-image");
444 var flags = src.match(cssregex);
445 var bgsrc = bgnodes[i].getAttribute("data-background-src");
447 var holder = parse_flags(flags[1].split("/"), options);
449 render("background", bgnodes[i], holder, src);
451 } else if (bgsrc != null) {
452 var holder = parse_flags(bgsrc.substr(bgsrc.lastIndexOf(options.domain) + options.domain.length + 1)
453 .split("/"), options);
455 render("background", bgnodes[i], holder, src);
459 for (l = images.length, i = 0; i < l; i++) {
460 var attr_data_src, attr_src;
461 attr_src = attr_data_src = src = null;
463 attr_src = images[i].getAttribute("src");
464 attr_datasrc = images[i].getAttribute("data-src");
466 if (attr_datasrc == null && !! attr_src && attr_src.indexOf(options.domain) >= 0) {
468 } else if ( !! attr_datasrc && attr_datasrc.indexOf(options.domain) >= 0) {
472 var holder = parse_flags(src.substr(src.lastIndexOf(options.domain) + options.domain.length + 1)
473 .split("/"), options);
476 render("fluid", images[i], holder, src)
478 render("image", images[i], holder, src);
485 contentLoaded(win, function () {
486 if (window.addEventListener) {
487 window.addEventListener("resize", resizable_update, false);
488 window.addEventListener("orientationchange", resizable_update, false);
490 window.attachEvent("onresize", resizable_update)
492 preempted || app.run();
494 if (typeof define === "function" && define.amd) {
495 define([], function () {