fix:修复了隐私保护的模糊效果没有在safari中正常显示的问题

This commit is contained in:
2024-04-22 08:55:08 +08:00
parent 314ddc4751
commit b5c58e1216
4 changed files with 13 additions and 7 deletions

View File

@@ -47,6 +47,7 @@
width: 100%;
height: 100%;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
/* 模糊度可以根据需要调整 */
transition: display;
z-index: 1;
@@ -54,7 +55,7 @@
pointer-events: none;
/* 确保遮罩不影响下方元素的交互 */
opacity: 0;
transition: opacity 0.3s ease
transition: opacity 0.1s ease
}
</style>
</head>