index.html 1.7 KB

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