溫馨提示×

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

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

CSS3如何實(shí)現(xiàn)磨砂玻璃背景效果

發(fā)布時(shí)間:2021-06-29 11:45:09 來(lái)源:億速云 閱讀:548 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要為大家展示了“CSS3如何實(shí)現(xiàn)磨砂玻璃背景效果”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“CSS3如何實(shí)現(xiàn)磨砂玻璃背景效果”這篇文章吧。

效果圖及實(shí)現(xiàn)

效果圖

CSS3如何實(shí)現(xiàn)磨砂玻璃背景效果

代碼實(shí)現(xiàn)

CSS Code復(fù)制內(nèi)容到剪貼板

<!DOCTYPE html>   
<html lang="en">   
    <head>   
        <meta charset="UTF-8">   
        <title>Document</title>   
        <style>   
                    /**  
                     * 設(shè)置背景圖全屏覆蓋及固定  
                     * 設(shè)置內(nèi)部元素偏移  
                     */  
                    body {   
                        /*此處背景圖自行替換*/  
                        background: url(demo.jpg) no-repeat center center fixed;   
                        background-size: cover;   
                         min-height: 100vh;   
                        box-sizing: border-box;   
                        margin: 0;   
                        padding-top: calc(50vh - 6em);   
                        font: 150%/1.6 Baskerville, Palatino, serif;   
                    }   
  
                    /**  
                     * 整體居中功能;  
                     * 背景透明虛化  
                     * 溢出隱藏  
                     * 邊緣圓角化  
                     * 文字增加淡陰影  
                     */  
                    .description{   
                        position: relative;   
                        margin: 0 auto;   
                        padding: 1em;   
                        max-width: 23em;   
                        background: hsla(0,0%,100%,.25) border-box;   
                        overflow: hidden;   
                        border-radius: .3em;   
                        box-shadow: 0 0 0 1px hsla(0,0%,100%,.3) inset,   
                                    0 .5em 1em rgba(0, 0, 0, 0.6);   
                        text-shadow: 0 1px 1px hsla(0,0%,100%,.3);   
                    }   
  
                    /*使用濾鏡模糊邊緣*/  
                    .description::before{   
                        content: '';   
                        position: absolute;   
                        top: 0; rightright: 0; bottombottom: 0; left: 0;   
                        margin: -30px;   
                        z-index: -1;   
                        -webkit-filter: blur(20px);   
                        filter: blur(20px);   
                    }   
        </style>   
    </head>   
    <body>   
        <p class="description">   
        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod   
        tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,   
        quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo   
        consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse   
        cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non   
        proident, sunt in culpa qui officia deserunt mollit anim id est laborum.   
        </p>   
    </body>   
</html>

總結(jié)

這種實(shí)現(xiàn)模式是考慮了性能來(lái)寫的,以及維護(hù)上的考慮
- 比如使用了em,可以很輕松的放大縮小整體大小
- 這里使用了hsla,這是我第一次使用這個(gè)顏色值;以前只在ps調(diào)整這個(gè),很不錯(cuò)的顏色模式.和RGBA大同小異,但是HSLA更符合人類眼睛的觀看;
- 還學(xué)到了一種新的背景縮寫方式

CSS Code復(fù)制內(nèi)容到剪貼板

/*分開(kāi)寫*/  
background-color:#ff0;   
background-image:url(background.gif);   
background-repeat:no-repeat;   
background-attachment:fixed;   
background-position:0 0;   
background-size:cover;   
  
/*簡(jiǎn)寫*/  
background: #ff0 url(background.gif) no-repeat / fixed cover;   
/*設(shè)置background-size必須用單斜杠隔開(kāi)*/

以上是“CSS3如何實(shí)現(xiàn)磨砂玻璃背景效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向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)容。

AI