1 // IE5.5+ PNG Alpha Fix v2.0 Alpha: Background Tiling Support
2 // (c) 2008-2009 Angus Turnbull http://www.twinhelix.com
4 // This is licensed under the GNU LGPL, version 2.1 or later.
5 // For details, see: http://creativecommons.org/licenses/LGPL/2.1/
7 var IEPNGFix = window.IEPNGFix || {};
9 IEPNGFix.tileBG = function(elm, pngSrc, ready) {
10 // Params: A reference to a DOM element, the PNG src file pathname, and a
11 // hidden "ready-to-run" passed when called back after image preloading.
13 var data = this.data[elm.uniqueID],
14 elmW = Math.max(elm.clientWidth, elm.scrollWidth),
15 elmH = Math.max(elm.clientHeight, elm.scrollHeight),
16 bgX = elm.currentStyle.backgroundPositionX,
17 bgY = elm.currentStyle.backgroundPositionY,
18 bgR = elm.currentStyle.backgroundRepeat;
20 // Cache of DIVs created per element, and image preloader/data.
30 var tiles = data.tiles,
31 pngW = tiles.img.width,
32 pngH = tiles.img.height;
35 if (!ready && pngSrc != tiles.src) {
36 // New image? Preload it with a callback to detect dimensions.
37 tiles.img.onload = function() {
39 IEPNGFix.tileBG(elm, pngSrc, 1);
41 return tiles.img.src = pngSrc;
45 if (tiles.src) ready = 1;
50 if (!ready && elmW == tiles.old.w && elmH == tiles.old.h &&
51 bgX == tiles.old.x && bgY == tiles.old.y && bgR == tiles.old.r) {
55 // Convert English and percentage positions to pixels.
68 if (pc = x.match(/(\d+)%/)) {
69 x = Math.round((elmW - pngW) * (parseInt(pc[1]) / 100));
71 if (pc = y.match(/(\d+)%/)) {
72 y = Math.round((elmH - pngH) * (parseInt(pc[1]) / 100));
77 // Handle backgroundRepeat.
78 var repeatX = { 'repeat': 1, 'repeat-x': 1 }[bgR],
79 repeatY = { 'repeat': 1, 'repeat-y': 1 }[bgR];
90 this.hook.enabled = 0;
91 if (!({ relative: 1, absolute: 1 }[elm.currentStyle.position])) {
92 elm.style.position = 'relative';
96 maxX = repeatX ? elmW : x + 0.1,
98 maxY = repeatY ? elmH : y + 0.1,
103 for (xPos = x; xPos < maxX; xPos += pngW) {
104 for (yPos = y; yPos < maxY; yPos += pngH) {
106 if (!tiles.cache[count]) {
107 tiles.cache[count] = document.createElement('div');
110 var clipR = Math.max(0, xPos + pngW > elmW ? elmW - xPos : pngW),
111 clipB = Math.max(0, yPos + pngH > elmH ? elmH - yPos : pngH);
112 d = tiles.cache[count];
115 s.left = (xPos - parseInt(elm.currentStyle.paddingLeft)) + 'px';
117 s.width = clipR + 'px';
118 s.height = clipB + 'px';
120 (yPos < 0 ? 0 - yPos : 0) + 'px,' +
123 (xPos < 0 ? 0 - xPos : 0) + 'px)';
126 s.position = 'absolute';
128 if (elm.firstChild) {
129 elm.insertBefore(d, elm.firstChild);
134 this.fix(d, pngSrc, 0);
139 while (count < tiles.cache.length) {
140 this.fix(tiles.cache[count], '', 0);
141 tiles.cache[count++].style.display = 'none';
144 this.hook.enabled = 1;
146 // Cache so updates are infrequent.
157 IEPNGFix.update = function() {
158 // Update all PNG backgrounds.
159 for (var i in IEPNGFix.data) {
160 var t = IEPNGFix.data[i].tiles;
161 if (t && t.elm && t.src) {
162 IEPNGFix.tileBG(t.elm, t.src);
166 IEPNGFix.update.timer = 0;
168 if (window.attachEvent && !window.opera) {
169 window.attachEvent('onresize', function() {
170 clearTimeout(IEPNGFix.update.timer);
171 IEPNGFix.update.timer = setTimeout(IEPNGFix.update, 100);