index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. width: 100%;
  16. height: 100%;
  17. margin: 0 auto;
  18. padding: 0;
  19. }
  20. #cesiumContainer {
  21. width: 100%;
  22. height: 100%;
  23. margin: 0 auto;
  24. padding: 0;
  25. overflow: hidden;
  26. }
  27. #fun {
  28. position: absolute;
  29. z-index: 100;
  30. left: 5%;
  31. }
  32. #fun1 {
  33. position: absolute;
  34. z-index: 100;
  35. left: 10%;
  36. }
  37. #fun2 {
  38. position: absolute;
  39. z-index: 100;
  40. left: 15%;
  41. }
  42. #fun3 {
  43. position: absolute;
  44. z-index: 100;
  45. left: 20%;
  46. }
  47. #font{
  48. position: absolute;
  49. z-index: 100;
  50. bottom: 8%;
  51. background-color:rgba(157,96,34,0.5);
  52. color:white;
  53. /* left:30%; */
  54. height: 50px;
  55. border-radius: 15px;
  56. text-align:center;
  57. line-height:50px;
  58. }
  59. </style>
  60. <script src="./Source/DGE.min.js"></script>
  61. </head>
  62. <body>
  63. <div id="container">
  64. <button id="fun">开始</button>
  65. <button id="fun1">暂停</button>
  66. <button id="fun2">继续</button>
  67. <button id="fun3">结束</button>
  68. <div id="font">
  69. </div>
  70. </div>
  71. </body>
  72. <script src="data.js"></script>
  73. <script src="map.js"></script>