Created
September 1, 2012 17:59
-
-
Save mdellanoce/3581792 to your computer and use it in GitHub Desktop.
CSS3 caching
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
function parseImagesFromCSS(doc) { | |
var i, j, | |
rule, | |
image, | |
pattern = /url\((.*)\)/, | |
properties = ['background-image', '-webkit-border-image'], | |
images = {}; | |
if (doc.styleSheets) { | |
for (i = 0; i < doc.styleSheets.length; ++i) { | |
images = $.extend(images, parseImagesFromCSS(doc.styleSheets[i])); | |
} | |
} else if (doc.cssRules) { | |
for (i = 0; i < doc.cssRules.length; ++i) { | |
rule = doc.cssRules[i]; | |
if (rule.styleSheet) { | |
images = $.extend(images, parseImagesFromCSS(rule.styleSheet)); | |
} else if (rule.style) { | |
for (j=0; j < properties.length; j++) { | |
image = pattern.exec(rule.style.getPropertyValue(properties[j])); | |
if (image && image.length === 2) { | |
images[image[1]] = image[0]; | |
} | |
} | |
} | |
} | |
} | |
return images; | |
}; | |
$.extend({ | |
preload: { | |
images: function(doc) { | |
doc = doc || document; | |
var images = $.map(parseImagesFromCSS(doc), function(url) { return url; }), | |
head = doc.getElementsByTagName('head')[0], | |
style = doc.createElement('style'); | |
style.type = 'text/css'; | |
style.id = 'preload'; | |
style.innerHTML = 'body::after { content: ' + images.join(' ') + '; display: none; }'; | |
head.appendChild(style); | |
} | |
} | |
}); | |
})(jQuery); |
jQuery(function(
Amazing little script. Thanks for it.
I think you have to remove all inlined images with URLs such as : url(data:....) to avoid the following problem :
Because it's a nonsense to preload inlined images.
So you probably have to remove from "images" array all images matching the pattern : /url\(data/
Something of this kind :
for (j=0; j < properties.length; j++) {
url = rule.style.getPropertyValue(properties[j]);
image = pattern.exec(url);
if (image && image.length === 2 && ! /url\(data/.exec(url)) {
images[image[1]] = image[0];
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use it? :)