download.html 612 B

123456789101112131415161718192021222324252627282930
  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. <title>跳转App store </title>
  7. <style>
  8. .contianer {
  9. height: 100vh;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. }
  14. </style>
  15. <script>
  16. window.onload = function() {
  17. window.location.href = 'https://apps.apple.com/us/app/%E9%9F%B3%E4%B9%90%E6%95%B0%E5%AD%97%E8%AF%BE%E5%A0%82/id6452725878'
  18. }
  19. </script>
  20. </head>
  21. <body>
  22. <div class="contianer">
  23. 即将跳转到 App store ...
  24. </div>
  25. </body>
  26. </html>