splash-screen.html 916 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <style>
  8. html,
  9. body {
  10. width: 100%;
  11. height: 100%;
  12. padding: 0;
  13. margin: 0;
  14. overflow: hidden;
  15. background: linear-gradient(172deg, rgba(27, 184, 172, 1) 0%, rgba(0, 142, 205, 1) 100%);
  16. }
  17. body {
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. }
  22. .logo {
  23. width: 329px;
  24. height: 61px;
  25. }
  26. </style>
  27. <title>图途象</title>
  28. </head>
  29. <body>
  30. <img src="logo.png" class="logo" />
  31. </body>
  32. </html>