日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

css3实现磨砂效果,CSS3打造磨砂玻璃背景效果

發(fā)布時間:2023/12/8 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 css3实现磨砂效果,CSS3打造磨砂玻璃背景效果 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

簡介

這個效果是在看CSS Secrets這書上看到的,感覺很不錯;

實現(xiàn)原理也挺簡單的;

效果圖及實現(xiàn)

效果圖

代碼實現(xiàn)

Document

/**

* 設(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);

}

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.

總結(jié)

這種實現(xiàn)模式是考慮了性能來寫的,以及維護(hù)上的考慮

- 比如使用了em,可以很輕松的放大縮小整體大小

- 這里使用了hsla,這是我第一次使用這個顏色值;以前只在ps調(diào)整這個,很不錯的顏色模式.和RGBA大同小異,但是HSLA更符合人類眼睛的觀看;

- 還學(xué)到了一種新的背景縮寫方式/*分開寫*/

background-color:#ff0;

background-image:url(background.gif);

background-repeat:no-repeat;

background-attachment:fixed;

background-position:0 0;

background-size:cover;

/*簡寫*/

background: #ff0 url(background.gif) no-repeat / fixed cover;

/*設(shè)置background-size必須用單斜杠隔開*/

以上就是CSS3打造磨砂玻璃背景效果的內(nèi)容,更多相關(guān)內(nèi)容請關(guān)注PHP中文網(wǎng)(www.gxlcms.com)!

總結(jié)

以上是生活随笔為你收集整理的css3实现磨砂效果,CSS3打造磨砂玻璃背景效果的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。