123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" href="/favicon.ico" />
- <meta name="referrer" content="no-referrer" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no"
- id="viewport"
- />
- <title>Douyin</title>
-
-
-
-
-
-
-
-
-
-
-
-
-
- <style>
- ::-webkit-scrollbar {
- display: none;
- }
- .fade-in {
- animation: fade-in 0.3s;
- }
- .fade-out {
- animation: fade-out 0.4s;
- }
- @keyframes fade-in {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- @keyframes fade-out {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- display: none;
- }
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|