Min's blog

I choose to see the beauties in the world.

导航

css样式,高斯模糊

Posted on 2017-07-11 15:31  Min77  阅读(221)  评论(0编辑  收藏  举报
.blur-container.blur-3 {
 --bg: url("background.jpg");
 background-image: var(--bg);
}
.blur-container.blur-3 .blur-box {
 color: #31405e;
 width: 100%;
 height: 100%;
 max-height: 300px;
 overflow: hidden;
}
.blur-container.blur-3 .blur-box h2 {
 font-size: 37px;
}
.blur-container.blur-3 .blur-box::before {
 z-index: 10;
 opacity: 0.5;
 background-color: #fff;
}
.blur-container.blur-3 .blur-box::after {
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
 -webkit-filter: blur(15px) brightness(110%);
 filter: blur(15px) brightness(110%);
 background-image: var(--bg);
}