1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title>巴博斯手表</title>
- <style>
-
- * {
- padding: 0;
- margin: 0;
- /* cursor: pointer; */
- box-sizing: border-box;
- -webkit-overflow-scrolling:touch;
- font-size: 0.25rem;
- }
- body {
- background-color: #000402;
- }
- body::-webkit-scrollbar{
- display: none;
- }
- </style>
- </head>
- <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
- <body>
- <noscript>
- <strong>We're sorry but default doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
-
- <script>
- $(document).ready(function() {
- var whei = $(window).width()
- whei = (whei > 1720) ? 1920 : whei
- $("html").css({
- fontSize: whei / 19.2
- })
- $(window).resize(function() {
- var whei = $(window).width()
- whei = (whei > 1720) ? 1920 : whei
- $("html").css({
- fontSize: whei / 19.2
- })
- });
- });
- </script>
- </html>
|