用一行 CSS 添加背景模糊

为元素添加背景模糊可以使其在视觉上更具吸引力,而且它也确实有用。那么,您不妨添加它,因为为什么不呢? ˙_(ツ)_/˙

您需要的代码行

1

backdrop-filter: blur(5px);

登录后复制

除此之外,请确保背景模糊的元素不是纯色而是有点透明。并且,确保该元素的背景也不是纯色。

完整代码/示例

html

1

<h1>subscribe to axorax!</h1>

登录后复制

css

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

body {

background: url(“./nature.jpg”) no-repeat center center / cover;

display: flex;项目网点我wcqh.cn

justify-content: center;

align-items: center;

height: 100dvh;

font-family: “arial”, sans-serif;

}

h1 {

padding: 1.5rem;

border-radius: 10px;

color: #ffffff;

/* ↓ Important ↓ */

background: rgba(255, 255, 255, 0.06);

backdrop-filter: blur(5px);

}

登录后复制

感谢您的阅读!祝你有美好的一天! ✨

以上就是用一行 CSS 添加背景模糊的详细内容,更多请关注青狐资源网其它相关文章!

© 版权声明
THE END
喜欢就支持一下吧
点赞494 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容