如何用CSS控制網頁背景透明度?

來源:互聯網
上載者:User
如何用CSS控制網頁背景透明度?這篇文章裡我們用一般的思路進行:作兩個層,一個用於放文字,另一個用於做透明背景(使用濾鏡)。

IE下的實現方法:

HTML代碼:
<div class="alpha1">
   <div class="ap2">
       <p>背景為紅色(#FF0000),透明度20%。</p>
   </div>
</div>

CSS代碼:
.alpha1{
     width:300px;
     height:200px;
     background-color:#FF0000;
     filter: Alpha(Opacity=30);
}
.ap2{
     position:relative;
}
這樣基本就可以實現啦,也不用擔心定位和自適應問題,最大的問題是僅IE支援。
如果相容FF、OP怎麼寫呢?首先,上面這種定法是不行的啦,那就只能用兩個層重疊的方法啦。
改下頁面結構與CSS樣式:
HTML代碼:
<div class="alpha1">
   <div class="ap2">
       <p>背景為紅色(#FF0000),透明度20%。</p>
   </div>
   <!--[if IE]><![if !IE]><![endif]--> <div class="alpha2"></div> <!--[if IE]><![endif]><![endif]-->
</div>

CSS代碼:
.alpha1,.alpha2{
     width:100%;
     height:auto;
     min-height:250px;
     _height:250px;
     overflow:hidden;
     background-color:#FF0000;
}
.alpha1{
     filter:alpha(opacity=20);
}
.alpha2{
     background-color:#FFFFFF;
     -moz-opacity:0.8;
     opacity: 0.8;
}
.ap2{
     position:absolute;
}

相關文章

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.