123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>跳转App store </title>
- <style>
- .contianer {
- height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
- <script>
- window.onload = function() {
- 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'
- }
- </script>
- </head>
- <body>
- <div class="contianer">
- 即将跳转到 App store ...
- </div>
-
- </body>
- </html>
|