ie6 - png 투명 해결 (ietester 의 ie6 에 문제 가 있 고 원생 ie6 는 문제 가 없습니다)
4577 단어 test
// ie6!
var FixMSIEPng = (function () {
if (!document.body.filters) {
// MSIE
return;
}
if (7 <= parseFloat(navigator.appVersion.split('MSIE')[1])) {
// IE7.0
return;
}
/*
*/
function addFilter(e) {
// style , background
//
if (e.style && e.style.background && !e.style.filter) {
var src = null;
if (src = e.style.backgroundImage.match(/^url\(\"?(.*\.png)\"?\)$/i)) {
e.style.backgroundColor = 'transparent';
e.style.backgroundImage = 'url()';
e.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''
+ src[1]
+ '\',sizingMethod=\''
+ ((e.style.width && e.style.height) ? 'scale' : 'crop')
+ '\')';
}
}
}
//
// addFilters()
function processRules(styleSheet) {
for (var i in styleSheet.rules) {
addFilter(styleSheet.rules[i]);
}
// @import stylesheets
if (styleSheet.imports) {
for (var j in styleSheet.imports) {
processRules(styleSheet.imports[j]);
}
}
}
var Obj = function () {
this.init();
};
Obj.fixedImg=function(){
if (document.images) {
var images = document.images;
var img = null;
for (var i = images.length - 1; img = images[i]; i--) {
// PNG
if (img.src && img.src.substring(img.src.length - 3,
img.src.length).toLowerCase() !== 'png') {
//
continue;
}
// style
var inlineStyle = '';
if (img.align === 'left' || img.align === 'right') {
inlineStyle += 'float:' + img.align + ';';
}
if (img.parentElement.nodeName.toUpperCase() === 'A') {
//
inlineStyle += 'cursor: pointer;';
}
// display inline-block width
// height ,
inlineStyle += 'display:inline-block;';
// css
if (img.style && img.style.cssText) {
inlineStyle += img.style.cssText;
}
// ( className
// ID) <span>
img.outerHTML = '<span ' + (img.id ? ' id="' + img.id + '"' : '')
+ (img.className ? ' class="' + img.className + '" ' : '')
+ ' style="width:' + img.width + 'px;height:' + img.height + 'px;'
+ inlineStyle
+ ';filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''
+ img.src
+ '\', sizingMethod=\'scale\');"></span>';
}
}
};
/**
*
*/
Obj.fixedLinkStyle=function(){
var styleSheets = document.styleSheets;
for (var i = 0, len = styleSheets.length; i < len; i++) {
processRules(styleSheets[i]);
}
};
/**
*
*/
Obj.fixedInlineStyle=function(){
if (document.all) {
var all = document.all;
for (var i = 0, len = all.length; i < len; i++) {
addFilter(all[i]);
}
}
};
Obj.prototype = {
constructor: Obj,
init: function () {
if (window.attachEvent) {
window.attachEvent('onload', function () {
Obj.fixedImg();
Obj.fixedLinkStyle();
Obj.fixedInlineStyle();
});
}
}
};
return new Obj();
})();
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
goss에서 테스트 실행 및 결과를 보는 방법작성한 테스트 항목을 실행(검증)은 다음을 실행합니다. 테스트 항목 작성에 사용한 add 등도 약어는 있지만 validate만큼 사용하지 않기 때문에 여기서 소개가 됩니다. 이것으로 실행하면 다음과 같은 결과가 됩니...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.