index.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>SDK 文档 - 版本列表</title>
  7. <meta http-equiv="refresh" content="0; url=./latest/index.html">
  8. <style>
  9. body {
  10. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. height: 100vh;
  15. margin: 0;
  16. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  17. color: white;
  18. }
  19. .container {
  20. text-align: center;
  21. background: rgba(255, 255, 255, 0.1);
  22. padding: 40px;
  23. border-radius: 12px;
  24. backdrop-filter: blur(10px);
  25. }
  26. .spinner {
  27. border: 3px solid rgba(255, 255, 255, 0.3);
  28. border-top: 3px solid white;
  29. border-radius: 50%;
  30. width: 40px;
  31. height: 40px;
  32. animation: spin 1s linear infinite;
  33. margin: 0 auto 20px;
  34. }
  35. @keyframes spin {
  36. 0% { transform: rotate(0deg); }
  37. 100% { transform: rotate(360deg); }
  38. }
  39. h1 {
  40. margin: 0 0 10px 0;
  41. font-size: 24px;
  42. }
  43. p {
  44. margin: 0;
  45. opacity: 0.9;
  46. }
  47. a {
  48. color: white;
  49. text-decoration: underline;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <div class="container">
  55. <div class="spinner"></div>
  56. <h1>SDK 文档 - 版本列表</h1>
  57. <p>正在跳转到文档首页...</p>
  58. <p><a href="./latest/index.html">如果页面没有自动跳转,请点击这里</a></p>
  59. </div>
  60. </body>
  61. </html>