| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
- <meta http-equiv="Content-Security-Policy" content="default-src 'self' https://192.168.20.177:3000 data: blob: 'unsafe-inline' 'unsafe-eval';">
- <title>数字人</title>
- <style>
- body {
- margin: 0;
- padding: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- background: #f5f5f5;
- }
- .loading {
- text-align: center;
- }
- .spinner {
- border: 4px solid #f3f3f3;
- border-top: 4px solid #3498db;
- border-radius: 50%;
- width: 40px;
- height: 40px;
- animation: spin 1s linear infinite;
- margin: 0 auto 20px;
- }
- @keyframes spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }
- </style>
- </head>
- <body>
- <div class="loading">
- <div class="spinner"></div>
- <p>正在加载...</p>
- </div>
- <script>
- // Capacitor 会自动重定向到 server.url 配置的地址
- // 这个文件仅作为入口点
- if (window.Capacitor) {
- console.log('Capacitor loaded');
- }
- </script>
- </body>
- </html>
|