index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="renderer" content="webkit" />
  7. <meta
  8. name="viewport"
  9. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
  10. />
  11. <script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js"></script>
  12. <script type="text/javascript" src="china.js"></script>
  13. <script type="text/javascript" src='//webapi.amap.com/maps?v=2.0&key=44135f4ce6e3118b876de00156cc5235&plugin=AMap.ToolBar'></script>
  14. <script src="//webapi.amap.com/ui/1.1/main.js?v=1.1.1"></script>
  15. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  16. <title><%= webpackConfig.name %></title>
  17. <style>
  18. html::-webkit-scrollbar {
  19. width: 10px;
  20. height: 1px;
  21. }
  22. html::-webkit-scrollbar-thumb {
  23. border-radius: 10px;
  24. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  25. background: #535353;
  26. }
  27. html::-webkit-scrollbar-track {
  28. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  29. border-radius: 10px;
  30. background: #ededed;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div id="app"></div>
  36. <!-- built files will be auto injected -->
  37. </body>
  38. </html>