diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..d0cd228 --- /dev/null +++ b/index.html @@ -0,0 +1,99 @@ +<!doctype html> +<html lang="en"> +<head> +<title>IMLandscape</title> +<!-- + WEBSITE BY PEPPER +--> +<meta charset="utf-8"> +<meta name="viewport" + content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> +<style> +body { + color: black; + font-family: Monospace; + font-size: 13px; + text-align: left; + background-color: whitesmoke; + margin: 0px; + overflow: hidden; +} + +#title { + font-size: 30px; +} + +#params { + font-size: 16px; +} + +#info { + font-size: 12px; + border: 1px solid black; + padding: 5px; +} + +#container { + position: absolute; + top: 150px; + width: 100%; + height: 100%; + padding: 5px; + background-color: #FFFFFF; +} + +</style> +</head> +<body> + <script src="js/jquery.min.js"></script> + <script src="js/Three.js"></script> + <script src="js/Detector.js"></script> + <script src="js/RequestAnimationFrame.js"></script> + <script src="js/3D_Landscape.js"></script> + <script src="js/shortcuts.js"></script> + <script src="js/pb.js"></script> + <table border="0" cellpadding="10"> + <tr> + <td> + <div id="title"> + DUMB 3D Landscape + </div> + <div id="info"> + Move Up/Down/Left/Right: Arrow Keys<br/> + Rotate Up/Down/Left/Right: Shift+Arrow Keys<br/> + Zoom In/Zoom Out: Page Up/Page Down<br/> + Toggle Wireframe: Space<br/> + Reset: Delete<br/> + </div> + </td> + + <td> + <div id="input"> + <form name="input" action="" method="post"> + <table id="form_table" border="0"> + <tr> + <td>Texture URL:</td> + <td colspan="2"><input type="text" id="texture" size="70" + value="http://someurl.jpg" /></td> + </tr> + <tr> + <td>Heightmap URL:</td> + <td colspan="2"><input type="text" id="heightmap" size="70" + value="http://someurl.jpg" /><br /></td> + </tr> + <tr> + <td><input type="button" value="Load New" id="change" + onClick="loadNew()" /></td> + <td><input type="button" value="Save as Image" id="save" + onClick="saveScene()" /></td> + </tr> + </table> + </form> + </div> + </td> + </tr> + </table> + <div id="container"> + </div> +</body> +</html> |
