@hubiao 在 为你的博客添加一个简约启动页 中发帖
代码
css
/* 防止开屏动画期间页面滚动和主内容闪烁 */
body.splash-active {
overflow: hidden;
}
/*
* 当 JS 移除 body.splash-active 类后,主内容区会平滑淡入。
* 请确保 '.index-container' 是您首页主内容区域的正确选择器。
*/
body.splash-active .index-container {
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
/* 开屏动画容器 */
.splash-screen {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
wi...