You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/* 定义预加载动画的样式 */
. preloading-animate {
/* 设置背景颜色为白色 */
background : #ffffff ;
/* 设置宽度和高度为100%,以覆盖整个视口 */
width : 100 % ;
height : 100 % ;
/* 使用固定定位,以便页面滚动时保持位置不变 */
position : fixed ;
/* 设置左边和顶部位置为0, 从屏幕左上角开始 */
left : 0 ;
top : 0 ;
/* 设置z-index以确保预加载动画在大多数元素之上显示 */
z-index : 299 ;
}
/* 定义预加载动画内部包装器的样式 */
. preloading-animate . preloading-wrapper {
/* 设置为绝对定位,以便相对于预加载动画元素定位 */
position : absolute ;
/* 设置宽度和高度为5rem, 用于控制动画的大小 */
width : 5 rem ;
height : 5 rem ;
/* 使用左50%和顶50%定位,然后通过变换将其中心点对齐到屏幕中心 */
left : 50 % ;
top : 50 % ;
/* 使用translate变换将元素向左和向上移动自身宽度和高度的一半, 实现居中 */
transform : translate ( -50 % , -50 % ) ;
}
/* 定义预加载动画内部小球的样式 */
. preloading-animate . preloading-wrapper . preloading-balls {
/* 设置字体大小为5rem, 可能用于控制动画小球的大小 */
font-size : 5 rem ;
}