Track3 2 years ago
parent
commit
38bc29eff8
2 changed files with 36 additions and 37 deletions
  1. 15 13
      index.html
  2. 21 24
      style.css

+ 15 - 13
index.html

@@ -10,19 +10,21 @@
 </head>
 
 <body>
-    <main>
-        <h1>正在穿梭虫洞</h1>
-        <p>XXX 已为虫洞助力 n 次</p>
-        <p class="flash">跳转中……</p> 
-    </main>
-    <footer>
-        <p>Powered by <a href="https://storeweb.cn">个站商店</a><sup> V3.0</sup></p>
-    </footer>
-    <div id="space">
-        <div class="stars"></div>
-        <div class="stars"></div>
-        <div class="stars"></div>
-        <div class="stars"></div>
+    <div class="random">
+        <div class="center">
+            <h1>正在穿梭虫洞</h1>
+            <p>XXX 已为虫洞助力 n 次</p>
+            <p class="flash">跳转中……</p> 
+        </div>
+        <div class="footer">
+            <p>Powered by <a href="https://storeweb.cn">个站商店</a><sup> V3.0</sup></p>
+        </div>
+        <div id="space">
+            <div class="stars"></div>
+            <div class="stars"></div>
+            <div class="stars"></div>
+            <div class="stars"></div>
+        </div>
     </div>
 </body>
 

+ 21 - 24
style.css

@@ -1,17 +1,15 @@
-*,
-::before,
-::after {
-  box-sizing: border-box;
+body {
+  margin: 0;
 }
 
-body {
-  font-family: sans-serif;
+.random {
   background: #000;
   color: #ddd;
-  margin: 0;
+  width: 100vw;
+  height: 100vh;
 }
 
-main {
+.random .center {
   position: absolute;
   top: 50%;
   left: 50%;
@@ -19,23 +17,22 @@ main {
   padding: 1rem;
   transform: translate(-50%, -50%);
   text-align: center;
+  z-index: 1;
+  box-sizing: border-box;
 }
 
-main>h1,main>p,footer>p {
-  max-width: 30rem;
-  margin-left: auto;
-  margin-right: auto;
-}
-
-footer {
+.random .footer {
   position: absolute;
   bottom: 0;
   width: 100%;
+  padding: 0 1rem;
   font-size: .8rem;
   text-align: center;
+  z-index: 1;
+  box-sizing: border-box;
 }
 
-.flash {
+.random .flash {
   font-weight: bolder;
   font-size: .8rem;
   color: #aaa;
@@ -60,18 +57,18 @@ footer {
 Space Travel Animated Background
 Credit to https://misspriyankadas.medium.com/space-travel-animation-using-html-and-css-676f4232754c
 */
-#space,
-.stars {
+.random #space,
+.random .stars {
   overflow: hidden;
   position: absolute;
-  z-index: -1;
+  z-index: 0;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
 }
 
-.stars {
+.random .stars {
   background-image:
     radial-gradient(2px 2px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
     radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
@@ -85,22 +82,22 @@ Credit to https://misspriyankadas.medium.com/space-travel-animation-using-html-a
   opacity: 0;
 }
 
-.stars:nth-child(1) {
+.random .stars:nth-child(1) {
   background-position: 50% 50%;
   animation-delay: 0s;
 }
 
-.stars:nth-child(2) {
+.random .stars:nth-child(2) {
   background-position: 20% 60%;
   animation-delay: 1s;
 }
 
-.stars:nth-child(3) {
+.random .stars:nth-child(3) {
   background-position: -20% -30%;
   animation-delay: 2s;
 }
 
-.stars:nth-child(4) {
+.random .stars:nth-child(4) {
   background-position: 40% -80%;
   animation-delay: 3s;
 }