Ver código fonte

Update index.html

jtoms 4 anos atrás
pai
commit
9e9ffedbec
1 arquivos alterados com 168 adições e 14 exclusões
  1. 168 14
      public/index.html

+ 168 - 14
public/index.html

@@ -1,17 +1,171 @@
 <!DOCTYPE html>
 <html>
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
-    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
-    <title><%= webpackConfig.name %></title>
-  </head>
-  <body>
-    <noscript>
-      <strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
-    </noscript>
-    <div id="app"></div>
-    <!-- built files will be auto injected -->
-  </body>
+<head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
+  <link rel="icon" href="<%= BASE_URL %>favicon.ico">
+  <title><%= webpackConfig.name %></title>
+  <style type="text/css">
+    .global-loader {
+      background: #000;
+      background: -webkit-radial-gradient(#222, #000);
+      background: radial-gradient(#222, #000);
+      bottom: 0;
+      left: 0;
+      right: 0;
+      top: 0;
+      overflow: hidden;
+      position: fixed;
+      z-index: 99999;
+    }
+
+    .global-loader .loader-inner {
+      bottom: 0;
+      height: 60px;
+      left: 0;
+      margin: auto;
+      position: absolute;
+      right: 0;
+      top: 0;
+      width: 100px;
+    }
+
+    .global-loader .loader-line-wrap {
+      -webkit-animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
+      animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
+      box-sizing: border-box;
+      height: 50px;
+      left: 0;
+      overflow: hidden;
+      position: absolute;
+      top: 0;
+      -webkit-transform-origin: 50% 100%;
+      transform-origin: 50% 100%;
+      width: 100px;
+    }
+
+    .global-loader .loader-line {
+      border: 4px solid transparent;
+      border-radius: 100%;
+      box-sizing: border-box;
+      height: 100px;
+      left: 0;
+      margin: 0 auto;
+      position: absolute;
+      right: 0;
+      top: 0;
+      width: 100px;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(1) {
+      -webkit-animation-delay: -50ms;
+      animation-delay: -50ms;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(2) {
+      -webkit-animation-delay: -100ms;
+      animation-delay: -100ms;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(3) {
+      -webkit-animation-delay: -150ms;
+      animation-delay: -150ms;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(4) {
+      -webkit-animation-delay: -200ms;
+      animation-delay: -200ms;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(5) {
+      -webkit-animation-delay: -250ms;
+      animation-delay: -250ms;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(1) .loader-line {
+      border-color: hsl(0, 80%, 60%);
+      height: 90px;
+      width: 90px;
+      top: 7px;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(2) .loader-line {
+      border-color: hsl(60, 80%, 60%);
+      height: 76px;
+      width: 76px;
+      top: 14px;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(3) .loader-line {
+      border-color: hsl(120, 80%, 60%);
+      height: 62px;
+      width: 62px;
+      top: 21px;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(4) .loader-line {
+      border-color: hsl(180, 80%, 60%);
+      height: 48px;
+      width: 48px;
+      top: 28px;
+    }
+
+    .global-loader .loader-line-wrap:nth-child(5) .loader-line {
+      border-color: hsl(240, 80%, 60%);
+      height: 34px;
+      width: 34px;
+      top: 35px;
+    }
+
+    @-webkit-keyframes spin {
+      0%, 15% {
+        -webkit-transform: rotate(0);
+        transform: rotate(0);
+      }
+      100% {
+        -webkit-transform: rotate(360deg);
+        transform: rotate(360deg);
+      }
+    }
+
+    @keyframes spin {
+      0%, 15% {
+        -webkit-transform: rotate(0);
+        transform: rotate(0);
+      }
+      100% {
+        -webkit-transform: rotate(360deg);
+        transform: rotate(360deg);
+      }
+    }
+  </style>
+</head>
+<body>
+<noscript>
+  <strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
+</noscript>
+<div id="app">
+  <div class="global-loader">
+    <div class="loader-inner">
+      <div class="loader-line-wrap">
+        <div class="loader-line"></div>
+      </div>
+      <div class="loader-line-wrap">
+        <div class="loader-line"></div>
+      </div>
+      <div class="loader-line-wrap">
+        <div class="loader-line"></div>
+      </div>
+      <div class="loader-line-wrap">
+        <div class="loader-line"></div>
+      </div>
+      <div class="loader-line-wrap">
+        <div class="loader-line"></div>
+      </div>
+    </div>
+  </div>
+</div>
+<!-- built files will be auto injected -->
+</body>
 </html>