diff --git a/index.html b/index.html index b0c6142..d015474 100644 --- a/index.html +++ b/index.html @@ -59,12 +59,53 @@ background-size: cover; } } + + /* 加载动画样式 */ + .loader { + border: 16px solid #f3f3f3; /* 加载动画的浅色边框 */ + border-top: 16px solid #3498db; /* 加载动画的顶部深色边框,形成旋转效果 */ + border-radius: 50%; + width: 120px; + height: 120px; + animation: spin 2s linear infinite; /* 应用名为spin的动画,2秒完成一次,线性,无限循环 */ + position: absolute; + top: 50%; + left: 50%; + margin-top: -60px; + margin-left: -60px; + z-index: 9999; /* 确保加载动画在其他元素之上显示 */ + } + + @keyframes spin { + 0% { + transform: rotate(0deg); /* 初始状态不旋转 */ + } + + 100% { + transform: rotate(360deg); /* 旋转360度,完成一圈旋转 */ + } + } + + /* 初始隐藏页面内容,只显示加载动画 */ + .page-content { + display: none; + } -

欢迎来到留言板

-
+
+
+

欢迎来到留言板

+
+
+