| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="" class="dark">
- <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>
- <%= htmlWebpackPlugin.options.title %>
- </title>
- <link rel="stylesheet" href="/static/css/reset.css">
- <script src="/static/config/config.js"></script>
- <script src="/static/plugins/Cesium/Cesium.js"></script>
- <link rel="stylesheet" href="/static/plugins/Cesium/Widgets/widgets.css">
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> 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>
- <style>
- :root {
- /* 滚动条整体部分,必须要设置 */
- ::-webkit-scrollbar {
- width: 6px;
- height: 10px;
- overflow-y: overlay;
- }
- /* 滚动条里面轨道,能向上向下移动 */
- ::-webkit-scrollbar-track {
- background-color: transparent;
- }
- /* 滚动条里面轨道,能向上向下移动 */
- ::-webkit-scrollbar-track-piece {
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- display: none;
- border-radius: 6px;
- }
- /* 滚动条里面的小方块,能向上向下移动 */
- *:hover::-webkit-scrollbar-thumb {
- display: flex;
- background-color: #808285;
- border-radius: 6px;
- }
- *:hover::-webkit-scrollbar-track-piece {
- background-color: #d1cfcf;;
- }
- }
- </style>
- </html>
|