mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Merge branch 'master' of github.com:jonobr1/GUI-DAT
This commit is contained in:
commit
506d5b597c
@ -1,5 +1,6 @@
|
||||
var Controller = function() {
|
||||
this.domElement;
|
||||
this.domElement = document.createElement('div');
|
||||
this.domElement.setAttribute('class', 'guidat-controller');
|
||||
|
||||
this.object = arguments[0];
|
||||
this.propertyName = arguments[1];
|
||||
@ -8,8 +9,10 @@ var Controller = function() {
|
||||
var NumberController = function() {
|
||||
|
||||
Controller.apply(this, arguments);
|
||||
this.isClicked = false;
|
||||
|
||||
var _this = this;
|
||||
|
||||
this.isClicked = false;
|
||||
this.py = this.y = 0;
|
||||
// TODO pass argument to inc
|
||||
this.inc = 0;
|
||||
@ -19,33 +22,28 @@ var NumberController = function() {
|
||||
this.button.setAttribute('id', this.propertyName);
|
||||
this.button.setAttribute('type', 'number');
|
||||
this.button.setAttribute('value', this.y);
|
||||
this.domElement.appendChild(this.button);
|
||||
|
||||
// return this.button;
|
||||
|
||||
this.addListeners = function() {
|
||||
|
||||
this.onmousedown = function(e) {
|
||||
this.isClicked = true;
|
||||
this.button.onmousedown = function(e) {
|
||||
_this.isClicked = true;
|
||||
};
|
||||
document.onmouseup = function(e) {
|
||||
this.isClicked = false;
|
||||
_this.isClicked = false;
|
||||
};
|
||||
document.onmousemove = function(e) {
|
||||
if(this.isClicked) {
|
||||
this.py = this.y;
|
||||
var dy = this.y - this.py;
|
||||
|
||||
if(_this.isClicked) {
|
||||
|
||||
_this.py = _this.y;
|
||||
_this.y = e.offsetY;
|
||||
var dy = _this.y - _this.py;
|
||||
|
||||
if(dy > 0)
|
||||
this.button.setAttribute('value', this.inc++);
|
||||
_this.button.setAttribute('value', _this.inc++);
|
||||
else
|
||||
this.button.setAttribute('value', this.inc--);
|
||||
this.y = e.offsetY;
|
||||
_this.button.setAttribute('value', _this.inc--);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
this.__defineGetter__("button", function(){
|
||||
return this.button;
|
||||
});
|
||||
};
|
||||
|
||||
NumberController.prototype = new Controller();
|
||||
|
@ -1,6 +1,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<link href="gui.css" media="screen" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="controller.js"></script>
|
||||
<script type="text/javascript" src="gui.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user