Two ways to make IE6 display PNG-24 format images normally

Two ways to make IE6 display PNG-24 format images normally
Method 1:
Please add the following code after </html>

Copy code
The code is as follows:

<!--[if IE 6]>
<script type="text/javascript">
function correctPNG()
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle
if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
var strNewHTML = "<span "+ imgID + imgClass + imgTitle + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src='" + img.src + "', sizingMethod='scale');\"></span>"
img.outerHTML = strNewHTML
i = i-1
}
}
}
correctPNG();
</script>
<![endif]-->

Method 2:

Copy code
The code is as follows:

<!--[if IE 6]>
<script src="js/DD_belatedPNG_0.0.8a.js" type="text/javascript"></script>
<script type="text/javascript">
DD_belatedPNG.fix('*');
</script>
<![endif]-->

<<:  Linux super detailed gcc upgrade process

>>:  HTML Nine-grid Layout Implementation Method

Recommend

Solve the problem of forgetting password in MySQL 5.7 under Linux

1. Problem Forgot password for mysql5.7 under lin...

Manually implement js SMS verification code input box

Preface This article records a common SMS verific...

MySQL quick recovery solution based on time point

The reason for writing such an article is that on...

MySQL uses the truncate command to quickly clear all tables in a database

1. Execute the select statement first to generate...

Install ethereum/Ethereum from scratch under CentOS7

Table of contents Preface Add sudo write permissi...

Linux Cron scheduled execution of PHP code with parameters

1. Still use PHP script to execute. Command line ...

Detailed explanation of the use of title tags and paragraph tags in XHTML

XHTML Headings Overview When we write Word docume...

How to download excel stream files and set download file name in vue

Table of contents Overview 1. Download via URL 2....

Implementation of Linux command line wildcards and escape characters

If we want to perform batch operations on a type ...

CSS3 implementation example of rotating only the background image 180 degrees

1. Mental Journey When I was writing the cockpit ...

More Features of the JavaScript Console

Table of contents Overview console.log console.in...

CentOS 7 method to modify the gateway and configure the IP example

When installing the centos7 version, choose to co...

Common parameters of IE web page pop-up windows can be set by yourself

The pop-up has nothing to do with whether your cur...

What are the differences between xHTML and HTML tags?

All tags must be lowercase In XHTML, all tags must...