index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <style>
  8. @import url(./Source/Widgets/widgets.css);
  9. @import url(./Source/Widgets/cesium-navigation.css);
  10. .compass{
  11. top:1%
  12. }
  13. html,
  14. body,
  15. #cesiumContainer {
  16. width: 100%;
  17. height: 100%;
  18. margin: 0;
  19. padding: 0;
  20. overflow: hidden;
  21. }
  22. #fun {
  23. position: absolute;
  24. z-index: 100;
  25. left: 5%;
  26. }
  27. #fun1 {
  28. position: absolute;
  29. z-index: 100;
  30. left: 10%;
  31. }
  32. #fun2 {
  33. position: absolute;
  34. z-index: 100;
  35. left: 15%;
  36. }
  37. #fun3 {
  38. position: absolute;
  39. z-index: 100;
  40. left: 20%;
  41. }
  42. #font{
  43. position: absolute;
  44. z-index: 100;
  45. bottom: 8%;
  46. background-color:rgba(157,96,34,0.5);
  47. color:white;
  48. /* left:30%; */
  49. height: 50px;
  50. border-radius: 15px;
  51. text-align:center;
  52. line-height:50px;
  53. }
  54. </style>
  55. <script src="./Source/DGE.min.js"></script>
  56. </head>
  57. <body>
  58. <div id="cesiumContainer">
  59. <button id="fun">开始</button>
  60. <button id="fun1">暂停</button>
  61. <button id="fun2">继续</button>
  62. <button id="fun3">结束</button>
  63. <div id="font">
  64. </div>
  65. </div>
  66. </body>
  67. <script src="data.js"></script>
  68. <script src="map.js"></script>