Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Lightweight controller library for JavaScript.

License

NotificationsYou must be signed in to change notification settings

dataarts/dat.gui

Repository files navigation

A lightweight graphical user interface for changing variables in JavaScript.

Get started with dat.GUI by reading theAPI documentation.

Packaged Builds

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

In yourhead tag, include the following code:

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

Installing from npm

$ npm install --save dat.gui
// CommonJS:constdat=require('dat.gui');// ES6:import*asdatfrom'dat.gui';constgui=newdat.GUI();

Directory Contents

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

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 theChange Log

Thanks

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


[8]ページ先頭

©2009-2025 Movatter.jp