mirror of
https://gitee.com/blitheli/test-skybox.git
synced 2025-06-16 18:38:18 +00:00
47 lines
1009 B
HTML
47 lines
1009 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<!-- Include the CesiumJS JavaScript and CSS files -->
|
||
|
<!--<script type='module' src="./main.js" ></script>-->
|
||
|
<script src="./CesiumUnminified/Cesium.js"></script>
|
||
|
<style>
|
||
|
@import url(./CesiumUnminified/Widgets/widgets.css);
|
||
|
|
||
|
html,
|
||
|
body,
|
||
|
#cesiumContainer {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.floating-div {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
background-color: #333;
|
||
|
color: #fff;
|
||
|
padding: 10px;
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="cesiumContainer"></div>
|
||
|
<div >
|
||
|
<img
|
||
|
id="img1"
|
||
|
src="./Skybox/SkyCube2k/skyCube2k_my.jpg"
|
||
|
alt="skyCube2k_px.jpg"
|
||
|
width="1024"
|
||
|
height="1024"
|
||
|
/>
|
||
|
</div>
|
||
|
<script type="module" src = './main.js' >
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|