gui-dat is a lightweight controller library for JavaScript. It allows you to easily manipulate variables and fire functions on the fly.
<script type="text/javascript" src="demo/demo.js"></script> <script type="text/javascript"> window.onload = function() { var fizzyText = new FizzyText("gui-dat"); GUI.start(); // Text field GUI.add(fizzyText, "message"); // Sliders with min and max GUI.add(fizzyText, "maxSize", 0.5, 7); GUI.add(fizzyText, "growthSpeed", 0.01, 1); GUI.add(fizzyText, "speed", 0.1, 2); // Sliders with min, max and increment. GUI.add(fizzyText, "noiseStrength", 10, 100, 5); // Boolean checkbox GUI.add(fizzyText, "displayOutline"); // Fires a function called "explode" GUI.add(fizzyText, "explode").setName('Explode!'); // Specify a custom name. }; </script>
this.prop = value
.