-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
require 'include.php';
dbConnect();
$ip = mysql_real_escape_string($_SERVER['REMOTE_ADDR']);
$sql = "INSERT INTO views (site, ip) VALUES ('trees','{$ip}')";
mysql_query($sql);
?>
<html>
<head>
<title>Trees 'n' Stuff</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="favicon.ico" type="images/x-icon" />
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script src="trees.js"></script>
</head>
<body>
<div id="content">
<div class="sidebar">
<div id="inputForm">
<div id="inputs">
Generations: <input id="generations" type="range" min="0" max="14" value="10"></input>
<button id="decrementBtn" style="width: 30px; margin-right: 55px">-</button>
<button id="incrementBtn" style="width: 30px">+</button>
<br>
<br>
Angle: <input id="angle" type="text" value="25"></input>
Base Width: <input id="width" type="text" value="20"></input>
Base Length: <input id="length" type="text" value="170"></input>
Parent to Child Ratio: <input type="text" id="ratio" value=".74"></input>
Color One: <input type="text" id="colora" value="83,53,10"></input>
Color Two: <input type="text" id="colorb" value="0,255,0"></input>
Gradient Rate: <input type="text" id="gradrate" value=".83"></input>
Randomize Colors: <input type="checkbox" id="randomize"></input>
<input type="button" value="Animate!" id="animate"></input>
</div>
</div>
</div>
<div id="tree" style="margin: 0 auto">
<canvas id="treeCanvas"></canvas>
</div>
</div>
</body>
</html>