12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html>
- <html lang="ZH-cn">
- <head>
- <meta charset="UTF-8">
- <link rel="icon" href="/favicon.ico" />
- <meta name="description" content="酷乐秀APP,器乐学习的不二选择">
- <title>酷乐秀</title>
- <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
- <script>
- this.globalThis || (this.globalThis = this)
- </script>
- <style>
- #loading{
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- visibility: hidden;
- opacity: 0;
- transition: opacity .3s;
- text-align: center;
- color: #1e293b;
- }
- #loading > div{
- display: none;
- font-size: 24px;
- }
- #loading a{
- color: #01c1b5;
- text-decoration: none;
- }
- #loading.show {
- visibility: visible;
- opacity: 1;
- }
- #cnzz_stat_icon_1279349593{
- display: none;
- }
- #update{
- margin-top: 100px;
- opacity: 0;
- visibility: hidden;
- transform: opacity .3s;
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- }
- #update.show{
- opacity: 1;
- visibility: visible;
- }
- #update img{
- display: block;
- margin: auto;
- width: 150px;
- height: 150px;
- }
- #update span{
- display: block;
- max-width: 90%;
- margin: auto;
- margin-top: 30px;
- color: rgba(0, 0, 0, .65);
- line-height: 1.8;
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- <div id="loading" class="show">
- <img src="/loading.svg" alt="loading"/>
- </div>
- <script type="module" src="/src/subpages/colexiu-share/main.ts"></script>
- </body>
- </html>
|