Lightweight controller library for JavaScript.
Go to file
2017-09-26 23:59:21 +02:00
build Add files via upload 2017-09-26 20:49:19 +02:00
src/dat Add files via upload 2017-09-26 20:51:54 +02:00
tests Add property to specify if open/close button shows on top or bottom of the menu 2016-12-07 16:42:55 +00:00
webpack compile es6 into umd properly 2017-04-07 15:11:51 -07:00
.gitignore Added node_modules 2015-08-14 18:29:49 +02:00
bower.json update change log and build numbers 2017-05-14 12:33:34 -07:00
CHANGELOG.md update change log and build numbers 2017-05-14 12:33:34 -07:00
example.html tidy up example 2016-09-23 12:43:24 -07:00
index.js 处理混用问题 2017-04-07 19:16:57 +08:00
LICENSE Add Apache 2.0 License 2014-12-01 11:01:01 -08:00
package.json hide eslint warnings 2017-05-14 12:32:21 -07:00
README.md Update README.md 2017-09-26 23:59:21 +02:00
screen1.jpg Add files via upload 2017-09-26 08:55:35 +02:00
screen2.jpg Add files via upload 2017-09-26 08:55:35 +02:00
screen3.jpg Add files via upload 2017-09-26 20:46:07 +02:00
screen4.jpg Add files via upload 2017-09-26 23:56:27 +02:00

update

  • new NgColorController , fixed style of color-controller (no popup, fixed height:125px, huebar width from 15px to 20px)
  • new BgColorController for handling two colors (i.e. foreground-background color)
  • new HSVColorController (toggle Mode: RGB <-> HSV)

BgColorController NgColorController HSVColorController-HSV HSVColorController-RGB

Usage

  • addNgColor(properties,property) for NgColorController
  • addBgColor(properties,property) for BgColorController
  • addHSVColor(properties,property) for HSVColorController

Note:

  • For using BgColorController displaying a two colors, a second "property+bg" must be present. For Example: var myProps={color:#ffffff,colorbg:#000000}; datgui.addBgColor(myProps,color);
  • Changing the height for Ng/BgColorControllers can be done by adding the height field in the CSS .dg.c tag: .c { float: left; width: 60%; height:125px; /*JLA*/ position: relative; }. The height of HSVColorController is fixed internaly to 125px.

dat.GUI

A lightweight graphical user interface for changing variables in JavaScript.

Get started with dat.GUI by reading the tutorial at http://workshop.chromeexperiments.com/examples/gui.

Packaged Builds

The easiest way to use dat.GUI in your code is by using the built source at build/dat.gui.min.js. These built JavaScript files bundle all the necessary dependencies to run dat.GUI.

In your head tag, include the following code:

<script type="text/javascript" src="dat.gui.min.js"></script>

Directory Contents

├── build - Compiled source code.
├── src - Source files.
├── tests - Tests.
└── webpack - Webpack config files.

Building your own dat.GUI

In the terminal, enter the following:

$ npm install
$ npm run build

npm scripts

  • npm run build - Build development and production version of scripts.
  • npm run dev - Build development version of script and watch for changes.

Working with Content Security Policy

If you're using a server with a Content Security Policy in place that blocks 'unsafe-inline', you will have problems when dat.gui.js tries to inject style information. To get around this, load 'build/dat.gui.css' as an external style sheet.

Changes

View the Change Log

Thanks

The following libraries / open-source projects were used in the development of dat.GUI: