index.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html lang="zh-cn" class="mud-height-full" style="margin:0">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>WinFormsBlazor</title>
  7. <base href="/" />
  8. <link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
  9. <link href="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css" rel="stylesheet" />
  10. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
  11. <link href="_content/Blazorise.Icons.FontAwesome/v6/css/all.min.css" rel="stylesheet">
  12. <link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
  13. <link href="_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css" rel="stylesheet" />
  14. <link href="PCC2.Gui.styles.css" rel="stylesheet" />
  15. <style>
  16. h1.loading {
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. transform: translate(-50%, -50%);
  21. margin: 0;
  22. background: radial-gradient(ellipse at center, #ff0066, #ff6600, #ffcc00, #33ccff, #6600ff);
  23. -webkit-background-clip: text;
  24. color: transparent;
  25. text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.6);
  26. animation: wobble3D 0.5s infinite ease-in-out;
  27. perspective: 1000px;
  28. }
  29. @keyframes wobble3D {
  30. 0% { transform: translate(-50%, -50%) rotateX(12deg) rotateY(16deg) rotateZ(-6deg) scale(1.03); }
  31. 20% { transform: translate(-50%, -50%) rotateX(20deg) rotateY(10deg) rotateZ(-2deg) scale(1.05); }
  32. 40% { transform: translate(-50%, -50%) rotateX(-16deg) rotateY(-20deg) rotateZ(6deg) scale(0.98); }
  33. 60% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
  34. 80% { transform: translate(-50%, -50%) rotateX(-10deg) rotateY(-10deg) rotateZ(4deg) scale(0.97); }
  35. 100% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
  36. }
  37. </style>
  38. </head>
  39. <body class="mud-height-full" style="margin:0">
  40. <div id="app" class="mud-height-full">
  41. <h1 class="loading">Loading...</h1>
  42. </div>
  43. <script src="_framework/blazor.webview.js"></script>
  44. <script src="_content/MudBlazor/MudBlazor.min.js"></script>
  45. <script src="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"></script>
  46. </body>
  47. </html>