css如何模糊化<body>元素的背景图?
毕业设计
1
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>模糊化背景图</title>
<style>
body {
background-image: url("image/bjt01.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
</head>
<body>
</body>
</html>
-
背景图专门放一个div,然后使用
filter: blur(30px);
发表回复