summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-02-12 18:29:27 -0800
committeryo mama <pepper@scannerjammer.com>2015-02-12 18:29:27 -0800
commitae0e6d987781d2fbf225611e2f8df37380a2bbcd (patch)
tree0c19a2a320588c7852bc8cdbff5da40624475b71 /index.html
first
Diffstat (limited to 'index.html')
-rw-r--r--index.html99
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>