完美相容IE及Firefox的PNG背景透明CSS代碼

來源:互聯網
上載者:User

關鍵是:

background:transparent url("../images/logo.png") ;no-repeat top;!important;

background-repeat:no-repeat; 

_background:none;

_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/logo.png',sizingMethod='scale');

 

說明:

 

在 IE6 中,可以很方便地利用 img 的 src 屬性,實現本地圖片預覽,然而在 IE7 中,這種辦法卻行不通。需要用 AlphaImageLoader

說明:

在對象容器邊界內,在對象的背景和內容之間顯示一張圖片。並提供對此圖片的剪下和改變尺寸的操作。如果載入的是PNG(Portable Network Graphics)格式,則0%-100%的透明度也被提供。

文法:

filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSize , src=sURL )

enabled: 可選項。布爾值(Boolean)。設定或檢索濾鏡是否啟用。
true:預設值。濾鏡啟用。
false:濾鏡被禁止。

sizingMethod: 可選項。字串(String)。設定或檢索濾鏡作用的對象的圖片在對象容器邊界內的顯示方式。
crop:剪下圖片以適應對象尺寸。
image:預設值。增大或減小對象的尺寸邊界以適應圖片的尺寸。
scale:縮放圖片以適應對象的尺寸邊界。

src: 必選項。字串(String)。使用絕對或相對 url 地址指定背景映像。假如忽略此參數,濾鏡將不會作用。

 

 注意:IE的圖片路徑./images   FirefoxFirefox 是 ../images

 

例子如下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<STYLE>
BODY {
margin:0px;
FONT-FAMILY: arial,sans-serif;
font-size:100%;
background: url(http://shared.youdao.com/images/skins/movie/hzz/preview.jpg)
}
.logo {
clear:both;
margin-top:18px;
background: transparent url(http://shared.youdao.com/images/logos/youdao-logo-s.png) no-repeat top;
*margin-left:-5px;
_background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://shared.youdao.com/images/logos/youdao-logo-s.png',sizingMethod='scale');
height:139px;
width:362px;
}
</STYLE>

</head>
<body>
<div class=logo></div>
</body>
</html>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.