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