| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>SDK 文档 - 版本列表</title>
- <meta http-equiv="refresh" content="0; url=./latest/index.html">
- <style>
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- margin: 0;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- }
- .container {
- text-align: center;
- background: rgba(255, 255, 255, 0.1);
- padding: 40px;
- border-radius: 12px;
- backdrop-filter: blur(10px);
- }
- .spinner {
- border: 3px solid rgba(255, 255, 255, 0.3);
- border-top: 3px solid white;
- 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); }
- }
- h1 {
- margin: 0 0 10px 0;
- font-size: 24px;
- }
- p {
- margin: 0;
- opacity: 0.9;
- }
- a {
- color: white;
- text-decoration: underline;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="spinner"></div>
- <h1>SDK 文档 - 版本列表</h1>
- <p>正在跳转到文档首页...</p>
- <p><a href="./latest/index.html">如果页面没有自动跳转,请点击这里</a></p>
- </div>
- </body>
- </html>
|