用CSS實現Firefox 和IE 都支援的Alpha透明效果

來源:互聯網
上載者:User

用CSS實現Firefox 和IE 都支援的Alpha透明效果

有的時候,為了實現一些特殊效果,需要將頁面元素變透明,本文介紹的就是用 CSS 實現 Firefox 和 IE 都支援的 Alpha 透明效果。
CSS: 

filter:alpha(opacity=50);       /* IE */

-moz-opacity:0.5;              /* Moz + FF */

opacity: 0.5;           /* 支援CSS3的瀏覽器(FF 1.5也支援)*/
IE使用私人屬性filter:alpha(opacity),Moz Family使用私人屬性-moz-opacity,而標準的屬性是opacity(CSS 3, Moz Family部分支援CSS3)。後面的數值是透明度,使用百分比或者小數。

相關文章

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.