🔥 删除无用文件

This commit is contained in:
Chenric 2024-06-27 22:51:16 +08:00 committed by GitHub
parent 155d2c6de0
commit e08e1d2392
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 61 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 MiB

View File

@ -1,61 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
在 title 里夹一点私货应该不会被发现吧——ddl 真是太厉害啦!
</title>
<style>
.container {
position: relative;
width: "auto";
height: "auto";
}
.blur-image {
width: 100%;
height: 100%;
/*filter: blur(0.6px); /* 模糊程度可以根据需要进行调整 */
}
.container1 {
position: absolute;
}
.card {
position: absolute;
top: 1%;
left: 5%;
width: 20%;
height: auto;
padding: 2rem;
border-radius: 2rem;
background: rgba(255, 255, 255, .2);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
</style>
</head>
<body>
<div
class="container"
backdrop-filter: blur(50px);
>
<img src="./img/background.jpg" class="blur-image">
</div>
<div
class="container1"
backdrop-filter: blur(50px);
>
<p>
hhhhhhh
</p>
</div>
<div
class="card"
top: .5rem;
left: .5rem;
>
<p>nicknames你好</p>
</div>
</body>
</html>