Files
sa-token/sa-token-doc/static/water-change-theme/water-change-theme.css
2025-12-24 23:31:40 +08:00

30 lines
729 B
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 水滴样式 */
.water-drop {
position: fixed;
/* 改为fixed避免触发滚动条 */
width: 20px;
height: 28px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
transform: rotate(45deg);
z-index: 1550;
border: 2px solid rgba(0, 0, 0, 0.2);
/* 添加轮廓 */
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
/* 添加阴影增强视觉效果 */
}
/* 圆形扩散效果 div */
.color-wave {
position: fixed;
border-radius: 50%;
transform: scale(0);
z-index: -1;
/* 降低z-index确保不遮挡内容 */
pointer-events: none;
}
/* 将页面主盒子设置为定位这样就可以让水滴扩散的div 设置 z-index: 保持不覆盖 main-box 里的内容了 */
.main-box{
position: relative;
/* z-index: 1; */
}