index.html 798 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="pragma" content="no-cache">
  6. <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
  7. <meta http-equiv="expires" content="0">
  8. <link rel="icon" href="/favicon.png">
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <title>消防救援官兵心理健康测评系统</title>
  11. </head>
  12. <body>
  13. <div id="app"></div>
  14. <script type="module" src="/src/main.ts"></script>
  15. </body>
  16. </html>
  17. <style lang="scss">
  18. html,
  19. body {
  20. margin: 0;
  21. padding: 0;
  22. height: 100%;
  23. overflow-x: hidden;
  24. /* 防止水平滚动 */
  25. }
  26. body {
  27. scroll-snap-type: y mandatory;
  28. /* 垂直方向上的强制滚动捕捉 */
  29. /* 防止水平滚动 */
  30. }
  31. </style>