css圖片透明效果

來源:互聯網
上載者:User

使用CSS設定一個圖片的透明效果
效果:可以通過前面的圖片看到後面的圖片
主要用的是filter:alpha(opacity=50);
其中50為透明值,0表示完全透明,100表示不透明。
詳細代碼:

 代碼如下 複製代碼
<HTML>
 <HEAD>
  <TITLE> 圖片透明效果 </TITLE>
 <style>
  body {
  background-image: url(images/1.jpg);
  }
  #nav { 
        width:760px;
        height:90px;
        margin:15px 0 0 10px;
        overflow:hidden;
        margin-top:100px;
        margin-left:20px;
        filter:alpha(opacity=50);
       background:url(yun_qi_img/banner.gif) no-repeat; 
}
 </style>
 </HEAD>

 <BODY> 
  <div id="nav">    
  </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.