-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHSBRect.ts
76 lines (76 loc) · 2.41 KB
/
HSBRect.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
class HSBRect {
constructor(width: number = 0x80, height: number = 0x80) {
this._hue = 0;
this._sa = document.createElement('canvas');
this._sa.height = 1;
this._sa.style.setProperty('position', 'absolute');
this._br = document.createElement('canvas');
this._br.width = 1;
this._br.style.setProperty('position', 'absolute');
this._div = document.createElement('div');
this._div.style.setProperty('background-color', 'white');
this._div.appendChild(this._sa);
this._div.appendChild(this._br);
this.width = width;
this.height = height;
}
private _hue;
private _sa;
private _br;
private _div;
private _renderSa(): void {
var ctx = this._sa.getContext('2d');
var grad = ctx.createLinearGradient(0, 0, this._sa.width, 1);
var c = 'hsla(' + this._hue + ',100%,50%,';
grad.addColorStop(0, c + '0)');
grad.addColorStop(1, c + '1)');
ctx.fillStyle = grad;
ctx.clearRect(0, 0, this._sa.width, 1);
ctx.fillRect(0, 0, this._sa.width, 1);
}
private _renderBr(): void {
var ctx = this._br.getContext('2d');
var grad = ctx.createLinearGradient(0, 0, 1, this._br.height);
grad.addColorStop(0, 'rgba(0,0,0,0)');
grad.addColorStop(1, 'black');
ctx.fillStyle = grad;
ctx.clearRect(0, 0, 1, this._br.height);
ctx.fillRect(0, 0, 1, this._br.height);
}
private _size(): void {
var w = this._sa.width + 'px';
var h = this._br.height + 'px';
this._div.style.setProperty('width', w);
this._div.style.setProperty('height', h);
this._sa.style.setProperty('width', w);
this._sa.style.setProperty('height', h);
this._br.style.setProperty('width', w);
this._br.style.setProperty('height', h);
}
get DOMElement() {
return this._div;
}
get hue(): number {
return this._hue;
}
set hue(value: number) {
this._hue = value;
this._renderSa();
}
get width(): number {
return this._sa.width;
}
set width(value: number) {
this._sa.width = value;
this._size();
this._renderSa();
}
get height(): number {
return this._br.height;
}
set height(value: number) {
this._br.height = value;
this._size();
this._renderBr();
}
}