오카리나 이야기
PNG Fix - jquery.pngfix.js
알 수 없는 사용자
2012. 2. 21. 13:29
반응형
IE 6 이하 버전에서는 PNG 파일의 투명도가 반영되지 않는 문제.
이를 해소하기 위해 사용하는 JS파일.
How to use jquery.pngFix.js
이를 해소하기 위해 사용하는 JS파일.
How to use jquery.pngFix.js
1.
Download jQuery
Download pngFix.zip
View Source
2.
Add jQuery and pngFix to the HEAD-Section of your HTML ...
<head>
...
<script type="text/javascript" src="jquery-latest.pack.js"></script>
<script type="text/javascript" src="jquery.pngFix.js"></script>
...
</head>
3.
Activate pngFix on document.ready
<head>
...
<script type="text/javascript">
$(document).ready(function(){
$(document).pngFix();
});
</script>
...
</head>
출처 : http://jquery.andreaseberhard.de/pngFix/
반응형