溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CSS層透明的實(shí)現(xiàn)方法

發(fā)布時(shí)間:2021-08-02 16:08:48 來(lái)源:億速云 閱讀:144 作者:chen 欄目:web開(kāi)發(fā)

本篇內(nèi)容介紹了“CSS層透明的實(shí)現(xiàn)方法”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

這個(gè)代碼段是演示用CSS控制一個(gè)DIV層的透明效果,大家可以看到平鋪的背景已經(jīng)顯現(xiàn)出來(lái),實(shí)際上比較簡(jiǎn)單就可以實(shí)現(xiàn),就是用CSS控制一個(gè)DIV層,定義樣式表時(shí)加入filter:alpha(opacity=65);這句代碼,里面的值是用來(lái)控制透明度的,你可以試著改變它的值,會(huì)有不同的透明效果。

代碼如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS定義層的透明效果</title>
<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.5;
background: url(//img.jbzj.com/file_images/article/201505/2015513164008952.jpg);
color: #fff;
width: 770px;
margin: 0 auto;
padding: 50px;
}
h2,h3 {
color: #77AFC7 !important;
margin-bottom: 0;
line-height: 1.2em;
}
p {
margin-top: 0;
}
a {
color: #aaa;
}
a:hover {
color: #FFF !important;
text-decoration: none;
}
code {
background-color: #100;
padding: 0.2em 0.5em;
display: inline-block;
}
#wrapper {
overflow: hidden;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 100%;
background: #000;
opacity: 0.65;
-moz-opacity: 0.65;
filter:alpha(opacity=65);
}
.container {
position: relative;
float: left;
}
.content {
position: relative;
float: left;
}
#column-1 {
width: 500px;
}
#column-2 {
width: 250px;
margin-left: 20px;
float: left;
display: inline;
}
#column-1 .content {
padding: 20px;
width: 460px;
}
#column-2 .content {
padding: 10px;
width: 230px;
}
* html #column-1 .overlay { height: expression(document.getElementById("column-1").offsetHeight); }
* html #column-2 .overlay { height: expression(document.getElementById("column-2").offsetHeight); }
</style>
</head>
<body>
<div id="wrapper">
<div id="column-1" class="container">
   <div class="overlay"></div>
   <div class="content">
       <h3>透明的網(wǎng)頁(yè).</h3>
       <p>IE6,FF測(cè)試通過(guò)</p>
       <p>這是一個(gè)透明的網(wǎng)頁(yè),還不錯(cuò)吧?實(shí)際上是用CSS控制DIV層的半透明狀態(tài),這樣會(huì)使平鋪的背景顯現(xiàn)出來(lái),看上去酷了不少。</p>
       <p>By  <a href="/">CC-Public Domain</a></p>
   </div>
</div>
<div id="column-2" class="container">
   <div class="overlay"></div>
   <div class="content">
       <h3>A sidebar</h3>
       <p>這是右側(cè),你可以嘗試修改一下。</p>
   </div>
</div>
</div>
</body>
</html>

希望本文所述對(duì)大家的div+css網(wǎng)頁(yè)設(shè)計(jì)有所幫助。

“CSS層透明的實(shí)現(xiàn)方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI