index.html 999 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, viewport-fit=cover">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.png">
  8. <title>tnbapp</title>
  9. <style>
  10. html, body {
  11. margin: 0;
  12. padding: 0;
  13. /* 禁止系统默认菜单(如长按图片保存) */
  14. -webkit-touch-callout: none;
  15. /* 避免点击时出现阴影 */
  16. -webkit-tap-highlight-color: transparent;
  17. /* 字体平滑渲染 */
  18. -webkit-font-smoothing: antialiased;
  19. background-color: #f4f4f4;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <noscript>
  25. <strong>很抱歉,如果没有 JavaScript,tnbapp 移动端无法正常工作。请启用它以继续。</strong>
  26. </noscript>
  27. <div id="app"></div>
  28. </body>
  29. </html>