mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
added favicon
This commit is contained in:
commit
c9e3a276a7
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
119
index.html
119
index.html
@ -1,56 +1,60 @@
|
|||||||
<html>
|
<!doctype html>
|
||||||
<head>
|
<head>
|
||||||
<link href="gui.css" media="screen" rel="stylesheet" type="text/css" />
|
<title>GUI-DAT</title>
|
||||||
<link href="demo.css" media="screen" rel="stylesheet" type="text/css" />
|
|
||||||
<script type="text/javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
|
<link rel="icon" type="image/ico" href="favicon.ico">
|
||||||
|
|
||||||
|
<link href="gui.css" media="screen" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="demo.css" media="screen" rel="stylesheet" type="text/css" />
|
||||||
|
<script type="text/javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="gui.js"></script>
|
<script type="text/javascript" src="gui.js"></script>
|
||||||
<script type="text/javascript" src="controller.js"></script>
|
<script type="text/javascript" src="controller.js"></script>
|
||||||
<script type="text/javascript" src="controller.string.js"></script>
|
<script type="text/javascript" src="controller.string.js"></script>
|
||||||
<script type="text/javascript" src="controller.number.js"></script>
|
<script type="text/javascript" src="controller.number.js"></script>
|
||||||
<script type="text/javascript" src="controller.boolean.js"></script>
|
<script type="text/javascript" src="controller.boolean.js"></script>
|
||||||
<script type="text/javascript" src="controller.function.js"></script>
|
<script type="text/javascript" src="controller.function.js"></script>
|
||||||
<script id="demo" type="text/javascript">
|
<script id="demo" type="text/javascript">
|
||||||
var controllableObject =
|
var controllableObject =
|
||||||
{
|
{
|
||||||
numberProperty: 20,
|
numberProperty: 20,
|
||||||
constrainedNum: 0,
|
constrainedNum: 0,
|
||||||
textProperty: "a string",
|
textProperty: "a string",
|
||||||
anotherTextProperty: "another string",
|
anotherTextProperty: "another string",
|
||||||
booleanProperty: false,
|
booleanProperty: false,
|
||||||
anotherBooleanProperty: false,
|
anotherBooleanProperty: false,
|
||||||
functionProperty: function() {
|
functionProperty: function() {
|
||||||
alert("I am a function!");
|
alert("I am a function!");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
|
|
||||||
|
prettyPrint();
|
||||||
|
|
||||||
prettyPrint();
|
GUI.start();
|
||||||
|
|
||||||
|
// Creates a number box
|
||||||
|
GUI.add(controllableObject, "numberProperty");
|
||||||
|
|
||||||
|
// Creates a slider (min, max)
|
||||||
|
GUI.add(controllableObject, "constrainedNum", -100, 100)
|
||||||
|
|
||||||
|
// Creates a text field
|
||||||
|
GUI.add(controllableObject, "textProperty");
|
||||||
|
|
||||||
|
// Creates a checkbox
|
||||||
|
GUI.add(controllableObject, "booleanProperty");
|
||||||
|
|
||||||
|
// Creates a button
|
||||||
|
GUI.add(controllableObject, "functionProperty")
|
||||||
|
.setName("Fire a Function");
|
||||||
|
|
||||||
GUI.start();
|
};
|
||||||
|
</script>
|
||||||
// Creates a number box
|
</head>
|
||||||
GUI.add(controllableObject, "numberProperty");
|
<body>
|
||||||
|
<pre id="demo-pre" class="prettyprint">
|
||||||
// Creates a slider (min, max)
|
|
||||||
GUI.add(controllableObject, "constrainedNum", -100, 100)
|
|
||||||
|
|
||||||
// Creates a text field
|
|
||||||
GUI.add(controllableObject, "textProperty");
|
|
||||||
|
|
||||||
// Creates a checkbox
|
|
||||||
GUI.add(controllableObject, "booleanProperty");
|
|
||||||
|
|
||||||
// Creates a button
|
|
||||||
GUI.add(controllableObject, "functionProperty")
|
|
||||||
.setName("Fire a Function");
|
|
||||||
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<pre id="demo-pre" class="prettyprint">
|
|
||||||
var controllableObject =
|
var controllableObject =
|
||||||
{
|
{
|
||||||
numberProperty: 20,
|
numberProperty: 20,
|
||||||
@ -65,24 +69,27 @@ var controllableObject =
|
|||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
|
|
||||||
GUI.start();
|
GUI.start();
|
||||||
|
|
||||||
// Creates a number box
|
// Creates a number box
|
||||||
GUI.add(controllableObject, "numberProperty");
|
GUI.add(controllableObject, "numberProperty");
|
||||||
|
|
||||||
// Creates a slider (min, max)
|
// Creates a slider (min, max)
|
||||||
GUI.add(controllableObject, "constrainedNum", -100, 100, 0);
|
GUI.add(controllableObject, "constrainedNum", -100, 100, 0);
|
||||||
|
|
||||||
// Creates a text field
|
// Creates a text field
|
||||||
GUI.add(controllableObject, "textProperty");
|
GUI.add(controllableObject, "textProperty");
|
||||||
|
|
||||||
// Creates a checkbox
|
// Creates a checkbox
|
||||||
GUI.add(controllableObject, "booleanProperty");
|
GUI.add(controllableObject, "booleanProperty");
|
||||||
|
|
||||||
// Creates a button
|
// Creates a button
|
||||||
GUI.add(controllableObject, "functionProperty")
|
GUI.add(controllableObject, "functionProperty")
|
||||||
.setName("Fire a Function");
|
.setName("Fire a Function");
|
||||||
|
|
||||||
};
|
};
|
||||||
</pre>
|
</pre>
|
||||||
</body>
|
<footer>
|
||||||
|
By <a href = "#">George</a>, <a href = "#">Jono</a>, and you.
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user