css3實現(xiàn)背景模糊的三種方式(小結(jié))
發(fā)布時間:2020-05-15 16:35:48 作者:執(zhí)手聽風吟
我要評論
這篇文章主要介紹了css3實現(xiàn)背景模糊的三種方式,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
一、普通背景模糊
代碼:
<Style>
html,
body {
width: 100%;
height: 100%;
}
* {
margin: 0;
padding: 0;
}
/*背景模糊*/
.bg {
width: 100%;
height: 100%;
position: relative;
background: url("./bg.jpg") no-repeat fixed;
background-size: cover;
box-sizing: border-box;
filter: blur(2px);
z-index: 1;
}
.content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
text-align: center;
z-index: 2;
}
</Style>
</head>
<body>
<div class="bg">
<div class="content">背景模糊</div>
</div>
</body>
效果如下所示:

這樣寫會使整個div的后代模糊并且還會出現(xiàn)白邊,導致頁面非常不美觀,要想解決這個問題,我們可以使用偽元素,因為偽元素的模糊度不會被父元素的子代繼承。
代碼:
<Style>
html,
body {
width: 100%;
height: 100%;
}
* {
margin: 0;
padding: 0;
}
/*背景模糊*/
.bg {
width: 100%;
height: 100%;
position: relative;
background: url("./bg.jpg") no-repeat fixed;
background-size: cover;
box-sizing: border-box;
z-index: 1;
}
.bg:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
/* 從父元素繼承 background 屬性的設(shè)置 */
background: inherit;
filter: blur(2px);
z-index: 2;
}
.content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
text-align: center;
z-index: 3;
}
</Style>
</head>
<body>
<div class="bg">
<div class="content">背景模糊</div>
</div>
</body>
效果如下所示:

二、背景局部模糊
上一個效果會了之后,局部模糊效果就比較簡單了。
代碼:
<Style>
html,
body {
width: 100%;
height: 100%;
}
* {
margin: 0;
padding: 0;
}
/*背景模糊*/
.bg {
width: 100%;
height: 100%;
position: relative;
background: url("./bg.jpg") no-repeat fixed;
background-size: cover;
box-sizing: border-box;
z-index: 1;
}
.content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
background: inherit;
z-index: 2;
}
.content:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: inherit;
filter: blur(15px);
/*為了模糊更明顯,調(diào)高模糊度*/
z-index: 3;
}
.content>div {
width: 100%;
height: 100%;
text-align: center;
line-height: 200px;
position: absolute;
left: 0;
top: 0;
z-index: 4;
}
</Style>
</head>
<body>
<div class="bg">
<div class="content">
<div>背景局部模糊</div>
</div>
</div>
</body>
效果如下圖所示:

三、背景局部清晰
代碼:
<Style>
html,
body {
width: 100%;
height: 100%;
}
* {
margin: 0;
padding: 0;
}
/*背景模糊*/
.bg {
width: 100%;
height: 100%;
position: relative;
background: url("./bg.jpg") no-repeat fixed;
background-size: cover;
box-sizing: border-box;
z-index: 1;
}
.bg:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: inherit;
filter: blur(5px);
z-index: 2;
}
.content {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 200px;
line-height: 200px;
text-align: center;
background: inherit;
z-index: 3;
box-shadow: 0 0 10px 6px rgba(0, 0, 0, .5);
}
</Style>
</head>
<body>
<div class="bg">
<div class="content">
<div>背景局部清晰</div>
</div>
</div>
</body>
效果如下圖所示:

到此這篇關(guān)于css3實現(xiàn)背景模糊的三種方式的文章就介紹到這了,更多相關(guān)css3背景模糊內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!
相關(guān)文章
- 這篇文章主要介紹了CSS設(shè)置背景模糊的實現(xiàn)方法,代碼簡單易懂,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下2018-10-22

CSS設(shè)置背景圖片模糊內(nèi)容不模糊的解決方法
最近做項目遇到這樣的需求一個div設(shè)置了background: url,現(xiàn)在需要使圖片背景模糊,div內(nèi)的文字清晰顯示。具體解決方法大家參考下本文2017-07-24


