這篇文章主要介紹設(shè)置css圖片透明度的方法有哪些,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)企業(yè)建站,十年網(wǎng)站建設(shè)經(jīng)驗,專注于網(wǎng)站建設(shè)技術(shù),精于網(wǎng)頁設(shè)計,有多年建站和網(wǎng)站代運(yùn)營經(jīng)驗,設(shè)計師為客戶打造網(wǎng)絡(luò)企業(yè)風(fēng)格,提供周到的建站售前咨詢和貼心的售后服務(wù)。對于成都網(wǎng)站建設(shè)、做網(wǎng)站中不同領(lǐng)域進(jìn)行深入了解和探索,創(chuàng)新互聯(lián)在網(wǎng)站建設(shè)中充分了解客戶行業(yè)的需求,以靈動的思維在網(wǎng)頁中充分展現(xiàn),通過對客戶行業(yè)精準(zhǔn)市場調(diào)研,為客戶提供的解決方案。
css中與設(shè)置透明效果相關(guān)的屬性有兩個:opacity和rgba。
下面我們就用這兩個屬性來分別設(shè)置圖片透明度的效果。
首先我們來看css中opacity屬性設(shè)置圖片透明度的例子
css:
.opacity1, .opacity2, .opacity_img { display: inline-block; } .opacity1 { filter: Alpha(opacity=0); } .opacity2 { filter: Alpha(opacity=50); } .opacity_img { filter: Alpha(opacity=100); } :root .opacity1 { opacity: 0; filter: none; } :root .opacity2 { opacity: .5; filter: none; } :root .opacity_img { opacity: 1; filter: none; }
html:
效果如下:
注意:目前主流的瀏覽器都支持opacity:value寫法,value取值為0-1,0為完全透明,1為完全不透明。但是在IE8及之前的版本中是不支持這種寫法,那么我們可以通過濾鏡來解決 filter:alpha(opacity=value),value取值為0-100,0為完全透明,100為完全不透明。就像上面例子那樣。
我們再來看看css中rgba設(shè)置圖片透明的例子:
html:
背景圖半透明,文字不透明
方法:定位+ background:rgba(255,255,255,0.3)
css:
.demo2-bg{ background: url(/upload/otherpic75/mm1.jpg) no-repeat; background-size: cover; width: 500px; height: 300px; position: relative; } .demo2{ position: absolute; left: 0; right: 0; top: 0; bottom: 0; width: 500px; height: 300px; line-height: 50px; text-align: center; background:rgba(255,255,255,0.3);
效果如下:
說明:此方法瀏覽器兼容性好,圖片和內(nèi)容都能很好分離實(shí)現(xiàn)背景圖片半透明效果,而文字、邊框等樣式與內(nèi)容不受影響。只是多了一層div,使用絕對定位樣式來實(shí)現(xiàn)重疊層疊。
設(shè)置背景顏色值與透明度。前3個255為代表RGB黑色,0.3代表透明度為30%。
最后,我們再來看一個圖片毛玻璃效果的設(shè)置方法:
背景圖半透明,文字不透明
方法:背景圖+ filter:blur
.demo1{ width: 500px; height: 300px; line-height: 50px; text-align: center; } .demo1:before{ background: url(/upload/otherpic75/mm1.jpg) no-repeat; background-size: cover; width: 500px; height: 300px; content: ""; position: absolute; top: 0; left: 0; z-index: -1;/*-1 可以當(dāng)背景*/ -webkit-filter: blur(3px); filter: blur(3px); }
效果如下:
以上是設(shè)置css圖片透明度的方法有哪些的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!