效果
毛玻璃特效
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>毛玻璃效果</title>
</head>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
width: 100%
}
main, .wall::before{
background: url("http://fangyuanxiaozhan.com:10080/zhaoolee/images/raw/master/mk.jpg") 50% / cover no-repeat fixed;
}
main {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.wall {
width: 380px;
height: 200px;
position: relative;
overflow: hidden;
z-index: 2;
}
.wall::before {
content: '';
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
filter: blur(30px);
z-index: -1;
}
</style>
<body>
<main>
<div class="wall">
<p>
打破次元壁?
</p>
<p>
与其说想打破次元壁, 进入二次元,不如说你已经厌倦了三次元人或物的丑的一面,只想获得美的一面。
</p>
</div>
</main>
</body>
</html>
网友评论