用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); /* IE 透明度20% */
}
.alpha2{
  background-color:#FFFFFF;
  -moz-opacity:0.8; /* Moz + FF 透明度20%*/
  opacity: 0.8; /* 支援CSS3的瀏覽器(FF 1.5也支援)透明度20%*/
}
.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.