PNG.JS代码:
// PNGHandler: 객체 지향 자바스크립트 기반 PNG 래퍼
// ------------------------- ------------------
// 버전 1.1.20031218
// 코드 Scott Schiller - www.schillmania.com
// ---------------------------- ----------------
// 설명:
//
//PNG가 기본적으로 또는 필터를 통해 지원되는 경우 우아하게 저하되는 PNG 기능을 제공합니다(젠장 , IE!)
// PNG를 이미지 및 DIV 배경 이미지로 사용해야 합니다.
함수 PNGHandler() {
var self = this;
this.na = navigator.appName.toLowerCase();
this.nv = navigator.appVersion.toLowerCase();
this.isIE = this.na.indexOf('internet explorer') 1?1:0;
this.isWin = this.nv.indexOf('windows') 1?1:0;
this.ver = this.isIE?parseFloat(this.nv.split('msie ')[1]):parseFloat(this.nv);
this.isMac = this.nv.indexOf('mac') 1?1:0;
this.isOpera = (navigator.userAgent.toLowerCase().indexOf('opera ') 1 || navigator.userAgent.toLowerCase().indexOf('opera/') 1);
if (this.isOpera) this.isIE = false; // Opera 필터 캐치(기본적으로 IE인 척하는 은밀함)
this.transform = null;
this.getElementsByClassName = function(className,oParent) {
doc = (oParent||document);
일치 = [];
노드 = doc.all||doc.getElementsByTagName('*');
for (i=0; i
matches[matches.length] = nodes[i];
}
}
반환 일치; // 어린이 여러분, 불장난을 하지 마세요. ;)
}
this.filterMethod = function(oOld) {
// IE 5.5 전용 필터 쓰레기(야유!)
// 이전 요소를 기반으로 새 요소를 만듭니다. 그렇지 않으면 (필터로 인해) 제대로 렌더링되지 않는 것 같습니다.
// 독점 "currentStyle" 개체를 사용하므로 CSS를 통해 상속된 규칙이 선택됩니다.
var o = document.createElement('div'); // oOld.nodeName
var filterID = 'DXImageTransform.Microsoft.AlphaImageLoader';
// o.style.width = oOld.currentStyle.width;
// o.style.height = oOld.currentStyle.height;
if (oOld.nodeName == 'DIV') {
var b = oOld.currentStyle.BackgroundImage.toString(); // 배경 이미지 URL 분석
oOld.style.BackgroundImage = 'none';
//currentStyle 객체에서 배경 이미지 URL을 구문 분석합니다.
var i1 = b.indexOf('url("') 5;
var newSrc = b.substr(i1,b.length-i1-2).replace('.gif','.png' ); // ')의 첫 번째 인스턴스 찾기(", 문자열
o = oOld;
o.style.writingMode = 'lr-tb'; /// 적용해야 하므로 필터에 레이아웃이 있음) "라고 표시됩니다. 진지하게, http://msdn.microsoft.com/workshop/author/filter/reference/filters/alphaimageloader.asp?frame=true
o.style.filter = "progid:" filterID를 참조하세요. "(src='" newSrc "',sizingMethod='crop')";
// 이전(기존)을 새(방금 생성된) 요소로 바꿉니다.
//oOld.parentNode.replaceChild(o ,o이전)
} else if (oOld.nodeName == 'IMG') {
var newSrc = oOld.getAttribute('src').replace('.gif','.png');
// 필터 적용
oOld.src = 'none.gif'; // 이미지 제거
oOld.style.filter = = "progid:" filterID "(src='" newSrc "',sizingMethod='crop')";
oOld.style.writingMode = 'lr-tb'; // 적용되어야 하며 필터에 '레이아웃이 있음'이 표시됩니다. 진지하게. http://msdn.microsoft.com/workshop/author/filter/reference/filters/alphaimageloader.asp?frame=true
}
}
this.pngMethod = function(o)을 참조하세요. ) {
// 기본 투명성 지원. 구현하기 쉽습니다. (우!)
bgImage = this.getBackgroundImage(o);
if (bgImage) {
// 배경 이미지 설정, .gif 교체
o.style.groundImage = 'url(' bgImage.replace('.gif','.png') ')' ;
} else if (o.nodeName == 'IMG') {
o.src = o.src.replace('.gif','.png');
} else if (!this.isMac) {
//window.status = 'PNGHandler.applyPNG(): 노드가 DIV 또는 IMG가 아닙니다.';
}
}
this.getBackgroundImage = function(o) {
var b, i1; // 백그라운드 관련 변수
var bgUrl = null;
if (o.nodeName == 'DIV' && !(this.isIE && this.isMac)) { // ie:mac PNG 배경이 있는 DIV에 대해 PNG 지원이 중단됨
if(document.defaultView ) {
if (document.defaultView.getComputeStyle) {
b = document.defaultView.getCompulatedStyle(o,'').getPropertyValue('Background-image');
i1 = b.indexOf('url(') 4;
bgUrl = b.substr(i1,b.length-i1-1);
} else {
// 계산된 스타일 없음
}
} else {
// 기본 보기 없음
}
}
return bgUrl;
}
this.supportTest = function() {
// 사용할 방법을 결정합니다.
// IE 5.5 /win32: 필터
if (this.isIE && this.isWin && this.ver >= 5.5) {
// IE 고유 필터 방법(DXFilter 사용)
self.transform = self.filterMethod;
// PNG 지원 없음 또는 손상된 지원 // 기존 콘텐츠를 있는 그대로 두세요
} else if (!this.isIE && this.ver >= 5 || (this.isIE && this.isMac && this. ver >= 5)) { // 버전 5 브라우저(IE 아님) 또는 IE:mac 5
self.transform =
} else {
// 아마도 PNG 지원이 되지 않을 것입니다. GIF 대신 사용됨
self.transform = null
return false;
}
this.init = function() {
(this.supportTest()) {
this.elements = this.getElementsByClassName('png');
for (var i=0; i
}
}
}
}
// PNG 핸들러 인스턴스화 및 초기화
var pngHandler = new PNGHandler();
데모页HTML代码:
PNG(img)
PNG(배경 이미지가 있는 div)
源码及DEMO打包下载: <script></script>本地下载<script></script>