index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--
  2. * @Description:
  3. * @Author:
  4. * @LastEditors: Napier
  5. * @LastEditTime: 2021-09-15 23:34:49
  6. -->
  7. <!DOCTYPE html>
  8. <html lang="zh-CN">
  9. <head>
  10. <meta charset="utf-8">
  11. <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1,minimum-scale=1,user-scalable=0,shrink-to-fit=no">
  12. <meta name='apple-mobile-web-app-capable' content='yes'>
  13. <meta name='apple-mobile-web-app-status-bar-style' content='black'>
  14. <meta name='format-detection' content='telephone=no'>
  15. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  16. <!-- 思源字体 -->
  17. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,300,400,500,700,900">
  18. <title>成理青年</title>
  19. </head>
  20. <body>
  21. <div class="scroll">
  22. <div id="app"></div>
  23. </div>
  24. <!-- built files will be auto injected -->
  25. </body>
  26. <style>
  27. body,html{
  28. width:100%;
  29. height:100%;
  30. margin: 0px;
  31. padding: 0px;
  32. touch-action: none
  33. }
  34. body {
  35. overflow: hidden;
  36. background: rgba(222,226,230,0.5);
  37. }
  38. .scroll{
  39. width:100%;
  40. height:100%;
  41. }
  42. </style>
  43. </html>