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.

84 lines
2.0 KiB

5 months ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
  6. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
  7. <meta name="x5-fullscreen" content="true">
  8. <meta name="theme-color" content="#000000" />
  9. <meta name="description" content="9527 description" />
  10. <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
  11. <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
  12. <style>
  13. body {
  14. margin: 0;
  15. padding: 0;
  16. }
  17. .public-box {
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. text-align: center;
  22. height: 80vh
  23. }
  24. .public-box .public-loading-img {
  25. width: 150px;
  26. height: 175px;
  27. animation: public-loading-img-fadeLoop 5s linear infinite;
  28. }
  29. @keyframes public-loading-img-fadeLoop {
  30. 0% {
  31. background-image: url("./loading/loading-1.png");
  32. background-size: 100% 100%;
  33. object-fit: cover;
  34. }
  35. 1% {
  36. background-image: url("./loading/loading-1.png");
  37. background-size: 100% 100%;
  38. object-fit: cover;
  39. }
  40. 25% {
  41. background-image: url("./loading/loading-2.png");
  42. background-size: 100% 100%;
  43. object-fit: cover;
  44. }
  45. 50% {
  46. background-image: url("./loading/loading-3.png");
  47. background-size: 100% 100%;
  48. object-fit: cover;
  49. }
  50. 75% {
  51. background-image: url("./loading/loading-4.png");
  52. background-size: 100% 100%;
  53. object-fit: cover;
  54. }
  55. 100% {
  56. background-image: url("./loading/loading-5.png");
  57. background-size: 100% 100%;
  58. object-fit: cover;
  59. }
  60. }
  61. </style>
  62. <title>SOFIL</title>
  63. </head>
  64. <body>
  65. <noscript>You need to enable JavaScript to run this app.</noscript>
  66. <div id="root">
  67. <div class="public-box">
  68. <div class="public-loading-img"></div>
  69. </div>
  70. </div>
  71. <script src="./initialization.js"></script>
  72. </body>
  73. </html>