index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en">
  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">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title>巴博斯手表</title>
  9. <style>
  10. * {
  11. padding: 0;
  12. margin: 0;
  13. /* cursor: pointer; */
  14. box-sizing: border-box;
  15. -webkit-overflow-scrolling:touch;
  16. font-size: 0.25rem;
  17. }
  18. body {
  19. background-color: #000402;
  20. }
  21. body::-webkit-scrollbar{
  22. display: none;
  23. }
  24. </style>
  25. </head>
  26. <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
  27. <body>
  28. <noscript>
  29. <strong>We're sorry but default doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  30. </noscript>
  31. <div id="app"></div>
  32. <!-- built files will be auto injected -->
  33. </body>
  34. <script>
  35. $(document).ready(function() {
  36. var whei = $(window).width()
  37. whei = (whei > 1720) ? 1920 : whei
  38. $("html").css({
  39. fontSize: whei / 19.2
  40. })
  41. $(window).resize(function() {
  42. var whei = $(window).width()
  43. whei = (whei > 1720) ? 1920 : whei
  44. $("html").css({
  45. fontSize: whei / 19.2
  46. })
  47. });
  48. });
  49. </script>
  50. </html>