mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
|
var Slider = function() {
|
||
|
|
||
|
this.domElement = document.createElement('div');
|
||
|
this.domElement.setAttribute('class', 'guidat-slider-bg');
|
||
|
|
||
|
this.fg = document.createElement('div');
|
||
|
this.fg.setAttribute('class', 'guidat-slider-fg');
|
||
|
|
||
|
this.domElement.appendChild(this.fg);
|
||
|
|
||
|
}
|