您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)css如何虛化背景圖片的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。
在虛化背景時(shí)使用的是filter屬性,我們就是利用filter屬性中blur來(lái)設(shè)置虛化背景的。
代碼如下:
<!DOCTYPE html> <html> <head> <style> img { filter: blur(5px); } </style> </head> <body> <img src="image/girl.jpg" alt="girl" width="300" height="300"> </body> </html>
css虛化背景的效果如下:
上述這個(gè)方法只是簡(jiǎn)單的利用css將背景圖片虛化,下面我們來(lái)看看稍微復(fù)雜一點(diǎn)的方法,當(dāng)然也是利用filter屬性
代碼如下:
<!DOCTYPE html> <html> <head> <style> .mbl { width: 20em; height: 20em; background: url(image/girl.jpg); background-size: cover; overflow: hidden; margin: 30px; } .text { width: 18em; height: 18em; margin: 1em; background: hsla(0, 0%, 100%, .4); color: black; text-align: center; overflow: hidden; position: relative; } .text::before { position: absolute; background: url(image/girl.jpg); background-size: cover; top: 0; right: 0; bottom: 0; left: 0; content: ''; filter: blur(4px); /* background: rgba(225, 0, 0, 0.5);*/ } .text p { height: inherit; width: inherit; display: table-cell; vertical-align: middle; position: relative; } </style> </head> <body> <div class="mbl"> <div class="text"> <p>圖片上面的文字內(nèi)容</p> </div> </div> </body> </html>
背景圖片虛化效果如下:
說(shuō)明:上述代碼主要就是將要設(shè)置虛化背景的地方通過(guò)偽元素設(shè)置背景顏色或圖片,利用區(qū)域relative定位和偽元素absolute定位這樣才能讓偽元素的大小完全等于本來(lái)區(qū)域的大小,然后用blur濾鏡進(jìn)行虛化處理,就會(huì)想上面的效果那樣。
感謝各位的閱讀!關(guān)于css如何虛化背景圖片就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(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)容。