12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="renderer" content="webkit" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
- />
- <script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js"></script>
- <script type="text/javascript" src="china.js"></script>
- <script type="text/javascript" src='//webapi.amap.com/maps?v=2.0&key=44135f4ce6e3118b876de00156cc5235&plugin=AMap.ToolBar'></script>
- <script src="//webapi.amap.com/ui/1.1/main.js?v=1.1.1"></script>
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <title><%= webpackConfig.name %></title>
- <style>
- html::-webkit-scrollbar {
- width: 10px;
- height: 1px;
- }
- html::-webkit-scrollbar-thumb {
- border-radius: 10px;
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- background: #535353;
- }
- html::-webkit-scrollbar-track {
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- background: #ededed;
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|