index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,IE=IE9">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  9. <link rel="icon" href="<%= BASE_URL %>kb_icon.png">
  10. <link rel="stylesheet" href="./static/Cesium/Widgets/widgets.css">
  11. <link href="https://cdn.bootcdn.net/ajax/libs/leaflet/1.7.1/leaflet.min.css" rel="stylesheet">
  12. <link href="https://cdn.bootcdn.net/ajax/libs/leaflet-contextmenu/1.4.0/leaflet.contextmenu.css" rel="stylesheet">
  13. <script type="text/javascript">
  14. window.onload = function () {
  15. if (!!window.ActiveXObject || "ActiveXObject" in window) {
  16. document.getElementById("ie_dialog").style.display = "block";
  17. }
  18. }
  19. </script>
  20. <script src="./static/js/hlslib/hls.min.js"></script>
  21. <script src="./static/config/modeConfig.js"></script>
  22. <script src="./static/Cesium/Cesium.js"></script>
  23. <style type="text/css">
  24. #ie_dialog {
  25. width: 350px;
  26. border: 1px solid #eeeeee;
  27. box-shadow: 8px 8px 8px #EEEEEE;
  28. margin: 150px auto 0;
  29. padding: 30px;
  30. text-align: center;
  31. display: none;
  32. }
  33. </style>
  34. <title>
  35. <%= htmlWebpackPlugin.options.title %>
  36. </title>
  37. </head>
  38. <body id="appBody" class=" nsfStyle">
  39. <div id="ie_dialog">
  40. 本平台仅支持非ie浏览器使用
  41. </div>
  42. <noscript>
  43. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  44. Please enable it to continue.</strong>
  45. </noscript>
  46. <div id="app"></div>
  47. <!-- built files will be auto injected -->
  48. </body>
  49. </html>