ホームページ  >  記事  >  ウェブフロントエンド  >  IE6 での PNG 画像の不透明な背景に対する解決策は、js_javascript スキルを使用して実装されています

IE6 での PNG 画像の不透明な背景に対する解決策は、js_javascript スキルを使用して実装されています

WBOY
WBOYオリジナル
2016-05-16 17:43:55944ブラウズ

IE6でpng画像を使用すると背景の不透明度の問題が発生します。次のjsの解決策を紹介します。
最初に js を使用する必要があります。コードは次のとおりです。

コードをコピーします コードは次のとおりです。

/**
* DD_belatedPNG: IE6 サポートを追加: CSS 背景画像および HTML IE6 での PNG 画像の不透明な背景に対する解決策は、js_javascript スキルを使用して実装されています 用の PNG 画像。
* 著者: Drew Diller
* 電子メール:draw.diller@gmail.com
* URL: http://www.dillerdesign.com/experiment/DD_belatedPNG/
* バージョン: 0.0.8a
* MIT ライセンスに基づいてライセンスされています: http://dillerdesign.com/experiment/DD_belatedPNG/#license
*
* 使用例:
* DD_belatedPNG.fix('.png_bg'); // 引数は CSS セレクターです
* DD_belatedPNG.fixPng( someNode ); // 引数は HTMLDomElement
**/
/*
必ずお読みください:
このスクリプトの内容はまったくもってばかげています。私はこれを知っています。 IE による特定のピクセルのレンダリングは意味をなさないので、このコードも意味を持ちません。
*/
/**waitbar による書き換え 2012.1.12
IE6 で透過 PNG 画像を縮小すると完全に表示できない問題を解決するため、
el.vml.image.fill.type = 'tile'; に変更しました。 el.vml.image.fill.type = 'フレーム';*/

var DD_belatedPNG = {
ns: 'DD_belatedPNG',
imgSize: {},
lay: 10,
nodesFixed: 0,
createVmlNameSpace: function () { /* VML を有効にする */
if (document.namespaces && !document.namespaces[this.ns]) {
document.namespaces.add (this.ns, 'urn:schemas-microsoft-com:vml');
}
},
createVmlStyleSheet: function () { /* スタイル VML、動作の有効化 */
/*
他の多くの開発者が
その他の多くの機能を追加した場合に備えてdocument.createStyleSheet
を使用してスタイルシートを作成すると、31 の制限マークに達してしまうため、そのメソッドは使用しないでください。
詳細情報: http://msdn.microsoft.com/en-us/library/ms531194(VS.85).aspx
*/
var screenStyleSheet、printStyleSheet;
screenStyleSheet = document.createElement('style');
screenStyleSheet.setAttribute('メディア', 'スクリーン');
document.documentElement.firstChild.insertBefore(screenStyleSheet, document.documentElement.firstChild.firstChild);
if (screenStyleSheet.styleSheet) {
screenStyleSheet = screenStyleSheet.styleSheet;
screenStyleSheet.addRule(this.ns '\:*', '{behavior:url(#default#VML)}');
screenStyleSheet.addRule(this.ns '\:shape', 'position:absolute;');
screenStyleSheet.addRule('img.' this.ns '_sizeFinder', 'behavior:none; border:none;position:absolute; z-index:-1; top:-10000px; Visibility:hidden;'); /* 大きな画像の垂直スクロールバーを回避するための大きな負の上部値。James O'Brien によって提案されています (http://www.thanatopsic.org/hendrik/) */
this.screenStyleSheet = screenStyleSheet;
/* VML アーティファクトが印刷物 (プレビューを含む) に表示されないように、印刷メディアのスタイルシートを追加します。 */
/* これを自動化してくれた R閙i Pr関ost に感謝します! */
printStyleSheet = document.createElement('style');
printStyleSheet.setAttribute('media', 'print');
document.documentElement.firstChild.insertBefore(printStyleSheet, document.documentElement.firstChild.firstChild);
printStyleSheet = printStyleSheet.styleSheet;
printStyleSheet.addRule(this.ns '\:*', '{表示: なし !重要;}');
printStyleSheet.addRule('img.' this.ns '_sizeFinder', '{表示: なし !重要;}');
}
}、
readPropertyChange: function () {
var el、display、v;
el = イベント.srcElement;
if (!el.vmlInitiated) {
return;
}
if (event.propertyName.search('background') != -1 ||event.propertyName.search('border') != -1) {
DD_belatedPNG.applyVML(el) ;
}
if (event.propertyName == 'style.display') {
display = (el.currentStyle.display == 'none') ? 'なし' : 'ブロック';
for (v in el.vml) {
if (el.vml.hasOwnProperty(v)) {
el.vml[v].shape.style.display = 表示;
}
}
}
if (event.propertyName.search('filter') != -1) {
DD_belatedPNG.vmlOpacity(el);
}
},
vmlOpacity: function (el) {
if (el.currentStyle.filter.search('lpha') != -1) {
var trans = el.現在のスタイル.フィルター;
trans = parseInt(trans.substring(trans.lastIndexOf('=') 1, trans.lastIndexOf(')')), 10)/100;
el.vml.color.shape.style.filter = el.currentStyle.filter; /* 完全な推測 */
el.vml.image.fill.opacity = trans; /* 完全な推測 */
}
},
handlePseudoHover: function (el) {
setTimeout(function () { /* setTimeout がないと意図したとおりに動作しません */
DD_belatedPNG .applyVML(el);
}, 1);
},
/**
* ドキュメント内で使用するメソッドです。
* @param {String} セレクター - 必須 - '#doc .container' などの CSS セレクター
**/
fix: function (selector) {
if (this.screenStyleSheet) {
var selectors, i;
selector = selector.split(','); /* 複数のセレクターがサポートされているため、これを複数回呼び出す必要はありません */
for (i=0; ithis.screenStyleSheet.addRule(selectors[i], 'behavior :expression(DD_belatedPNG.fixPng(this))'); /* スタイルシートに追加せずに関数を実行するようです - 興味深い... */
}
}
},
applyVML: function (el) {
el.runtimeStyle.cssText = '';
this.vmlFill(el);
this.vmlOffsets(el);
this.vmlOpacity(el);
if (el.isImg) {
this.copyImageBorders(el);
}
},
attachHandlers: function (el) {
var self, handlers, handler, moreForAs, a, h;
自分 = これ;
handlers = {resize: 'vmlOffsets', move: 'vmlOffsets'};
if (el.nodeName == 'A') {
moreForAs = {mouseleave: 'handlePseudoHover'、mouseenter: 'handlePseudoHover'、focus: 'handlePseudoHover'、blur: 'handlePseudoHover'};
for (a in moreForAs) {
if (moreForAs.hasOwnProperty(a)) {
handlers[a] = moreForAs[a];
}
}
}
for (h in handlers) {
if (handlers.hasOwnProperty(h)) {
handler = function () {
self[handlers [h]](el);
};
el.attachEvent('on' h, ハンドラー);
}
}
el.attachEvent('onpropertychange', this.readPropertyChange);
},
giveLayout: function (el) {
el.style.zoom = 1;
if (el.currentStyle.position == 'static') {
el.style.position = 'relative';
}
},
copyImageBorders: function (el) {
varstyles, s;
スタイル = {'borderStyle':true, 'borderWidth':true, 'borderColor':true};
for (スタイル内の s) {
if (styles.hasOwnProperty(s)) {
el.vml.color.shape.style[s] = el.currentStyle[s];
}
}
},
vmlFill: function (el) {
if (!el.currentStyle) {
return;
} else {
var elStyle、noImg、lib、v、img、imgLoaded;
elStyle = el.currentStyle;
}
for (v in el.vml) {
if (el.vml.hasOwnProperty(v)) {
el.vml[v].shape.style.zIndex = elStyle.zIndex ;
}
}
el.runtimeStyle.backgroundColor = '';
el.runtimeStyle.backgroundImage = '';
noImg = true;
if (elStyle.backgroundImage != 'none' || el.isImg) {
if (!el.isImg) {
el.vmlBg = elStyle.backgroundImage;
el.vmlBg = el.vmlBg.substr(5, el.vmlBg.lastIndexOf('")')-5);
}
else {
el.vmlBg = el.src;
}
lib = this;
if (!lib.imgSize[el.vmlBg]) { /* ロードされた画像のサイズを決定します */
img = document.createElement('img');
lib.imgSize[el.vmlBg] = img;
img.className = lib.ns '_sizeFinder';
img.runtimeStyle.cssText = '位置:絶対; ; top:-10000px; border:0; padding:0;' /* ヘルパー要素の誤った一致を防ぐために、必ず動作を設定してください。 🎜>this.width = this.offsetWidth; /* 奇妙なキャッシュバスティング要件です! */
lib.vmlOffsets(el); .attachEvent('onload', imgLoaded);
img.src = el.vmlBg;
img.removeAttribute('height'); body.insertBefore(img, document.body.firstChild);
el.vml.image.fill.src = el.vmlBg;
noImg = false; vml.image.fill.on = !noImg;
el.vml.image.fill.color = 'none';
el.vml.color.shape.style.backgroundColor = elStyle.backgroundColor;
el.runtimeStyle.backgroundImage = 'none';
el.runtimeStyle.backgroundColor = '透明';
},
/* offsetLeft と clientLeft の合計が 1 になると IE は何をするのか理解できず、VML が最終的にあいまいになってしまうため、1 ピクセルずつプッシュ/拡大する必要がありますそして余分な部分を切り落とします */
vmlOffsets: function (el) {
var thisStyle, size, fudge, makeVisible, bg, bgR, dC, altC, b, c, v;
thisStyle = el.currentStyle;
サイズ = {'W':el.clientWidth 1, 'H':el.clientHeight 1, 'w':this.imgSize[el.vmlBg].width, 'h':this.imgSize[el.vmlBg ].height, 'L':el.offsetLeft, 'T':el.offsetTop, 'bLW':el.clientLeft, 'bTW':el.clientTop};
ファッジ = (サイズ.L サイズ.bLW == 1) ? 1:0;
/* vml 形状、左、上、幅、高さ、原点 */
makeVisible = function (vml, l, t, w, h, o) {
vml.coordsize = w ',' h;
vml.coordrigin = o ',' o;
vml.path = 'm0,0l' w ',0l' w ',' h 'l0,' h ' xe';
vml.style.width = w 'px';
vml.style.height = h 'px';
vml.style.left = l 'px';
vml.style.top = t 'px';
};
makeVisible(el.vml.color.shape, (size.L (el.isImg ? 0 : size.bLW)), (size.T (el.isImg ? 0 : size.bTW)), (size. W-1)、(サイズ.H-1)、0);
makeVisible(el.vml.image.shape, (size.L size.bLW), (size.T size.bTW), (size.W), (size.H), 1 );
bg = {'X':0, 'Y':0};
if (el.isImg) {
bg.X = parseInt(thisStyle.paddingLeft, 10) 1;
bg.Y = parseInt(thisStyle.paddingTop, 10) 1;
}
else {
for (b in bg) {
if (bg.hasOwnProperty(b)) {
this.figurePercentage(bg, size, b, thisStyle['backgroundPosition' b]);
}
}
}
el.vml.image.fill.position = (bg.X/size.W) ',' (bg.Y/size.H);
bgR = thisStyle.backgroundRepeat;
dC = {'T':1, 'R':size.W ファッジ, 'B':size.H, 'L':1 ファッジ}; /* これらは、あらゆる種類の繰り返しのデフォルトです */
altC = { 'X': {'b1': 'L', 'b2': 'R', 'd': 'W'}, 'Y ': {'b1': 'T', 'b2': 'B', 'd': 'H'} };
if (bgR != 'repeat' || el.isImg) {
c = {'T':(bg.Y), 'R':(bg.X size.w), 'B' :(bg.Y サイズ.h), 'L':(bg.X)}; /* これらは繰り返しなしのデフォルトです - 画像の位置までクリップします */
if (bgR.search('repeat-') != -1) { /* ここで、repeat-x の場合は dC に戻りましょう。またはrepeat-y */
v = bgR.split('repeat-')[1].toUpperCase();
c[altC[v].b1] = 1;
c[altC[v].b2] = サイズ[altC[v].d];
}
if (c.B > size.H) {
c.B = size.H;
}
el.vml.image.shape.style.clip = 'rect(' c.T 'px ' (c.R fudge) 'px ' c.B 'px ' (c.L fudge) 'px)';
}
else {
el.vml.image.shape.style.clip = 'rect(' dC.T 'px ' dC.R 'px ' dC.B 'px ' dC.L ' px)';
}
},
figurePercentage: 関数 (背景、サイズ、軸、位置) {
var 水平、分数;
分数 = true;
水平 = (軸 == 'X');
switch(position) {
case 'left':
case 'top':
bg[axis] = 0;
休憩;
case 'center':
bg[axis] = 0.5;
休憩;
ケース '右':
ケース '下':
bg[axis] = 1;
休憩;
デフォルト:
if (position.search('%') != -1) {
bg[axis] = parseInt(position, 10) / 100;
}
else {
分数 = false;
}
}
bg[axis] = Math.ceil(fraction ? ( (size[horizo​​ntal?'W': 'H'] * bg[axis]) - (size[horizo​​ntal?'w ': 'h'] * bg[axis]) ) : parseInt(position, 10) );
if (bg[axis] % 2 === 0) {
bg[axis] ;
}
return bg[axis];
},
fixPng: function (el) {
el.style.behavior = 'none';
var lib、els、nodeStr、v、e;
if (el.nodeName == 'BODY' || el.nodeName == 'TD' || el.nodeName == 'TR') { /* 要素はまだサポートされていません */
return;
}
el.isImg = false;
if (el.nodeName == 'IMG') {
if(el.src.toLowerCase().search(/.png$/) != -1) {
el.isImg = true ;
el.style.visibility = 'hidden';
}
else {
return;
}
}
else if (el.currentStyle.backgroundImage.toLowerCase().search('.png') == -1) {
return;
}
lib = DD_belatedPNG;
el.vml = {色: {}、画像: {}};
els = {形状: {}、塗りつぶし: {}};
for (v in el.vml) {
if (el.vml.hasOwnProperty(v)) {
for (e in els) {
if (els.hasOwnProperty(e)) {
nodeStr = lib.ns ':' e;
el.vml[v][e] = document.createElement(nodeStr);
}
}
el.vml[v].shape.stroking = false;
el.vml[v].shape.appendChild(el.vml[v].fill);
el.parentNode.insertBefore(el.vml[v].shape, el);
}
}
el.vml.image.shape.fillcolor = 'none'; /* 画像のロードを待機しているときに空白の白いshapeangleを表示しません。 */
//el.vml.image.fill.type = 'タイル'; /* 画像を表示させます。 */
el.vml.image.fill.type = 'フレーム'; /* 2012.1.12 */
el.vml.color.fill.on = false; /* 実際にはvml要素のstyle.backgroundColorを適用するので、白さを非表示にします。 */
lib.attachHandlers(el);
lib.giveLayout(el);
lib.giveLayout(el.offsetParent);
el.vmlInitiated = true;
lib.applyVML(el); /* 与える! */
}
};
try {
document.execCommand("BackgroundImageCache", false, true); /* TredoSoft Multiple IE はこれを好まないので、試してみてください */
} catch(r) {}
DD_belatedPNG.createVmlNameSpace();
DD_belatedPNG.createVmlStyleSheet();

下我们来看怎么使用这个js
DD_belatedPNG は一款完美解决IE6 下の PNG 透明 JS ファイル、DD_belatedPNG はマイクロ软の VML 言説 PNG を使用しています画像は、半透明の効果が得られるように再作成され、background-position および background-repeat プロパティをサポートすることができ、多くの種類の png をサポートします。

使用方法 :
代価 次のように:

< !--[IE 6 の場合]><script> DD_belatedPNG.fix('.png_bg');</script>

参照関数は DD_belatedPNG.fix() であり、括弧内の * はすべての css 選択ツール.png_bg の変更された css 選択ツール名を示します。
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。