您好,登錄后才能下訂單哦!
這篇文章主要介紹“css怎么使用磨砂背景”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“css怎么使用磨砂背景”文章能幫助大家解決問題。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> /** * 設置背景圖全屏覆蓋及固定 * 設置內部元素偏移 */ 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; right: 0; bottom: 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>
這種實現模式是考慮了性能來寫的,以及維護上的考慮
比如使用了 em,可以很輕松的放大縮小整體大小
這里使用了 hsla,這是我第一次使用這個顏色值;以前只在 ps 調整這個,很不錯的顏色模式.和 RGBA 大同小異,但是 HSLA 更符合人類眼睛的觀看;
還學到了一種新的背景縮寫方式
/*分開寫*/ 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; /*設置background-size必須用單斜杠隔開*/
關于“css怎么使用磨砂背景”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。