如何 - 模糊背景图像
了解如何使用 CSS 创建模糊背景图像。
模糊背景图像
注意: 此示例在 Edge 12、IE 11 或更早版本中不起作用。
如何创建模糊背景图像
步骤 1) 添加 HTML
示例
<div class="bg-image"></div>
<div class="bg-text">
<h1>我是 John Doe</h1>
<p>我是一名摄影师</p>
</div>
步骤 2) 添加 CSS
示例
body, html {
height: 100%;
}
* {
box-sizing: border-box;
}
.bg-image {
/* 使用的图像 */
background-image: url("photographer.jpg");
/* 添加模糊效果 */
filter: blur(8px);
-webkit-filter: blur(8px);
/* 全高 */
height: 100%;
/* 很好地居中和缩放图像 */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* 将文本定位在页面/图像的中间 */
.bg-text {
background-color: rgb(0,0,0); /* 备用颜色 */
background-color: rgba(0,0,0, 0.4); /* 黑色带透明度/半透明 */
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}
自己试试 »