-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
172 lines (159 loc) · 6.55 KB
/
script.js
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
var Dial = function(container) {
this.container = container;
this.size = this.container.dataset.size;
this.strokeWidth = this.size / 8;
this.radius = (this.size / 2) - (this.strokeWidth / 2);
this.value = this.container.dataset.value;
this.direction = this.container.dataset.arrow;
this.svg;
this.defs;
this.slice;
this.overlay;
this.text;
this.arrow;
this.create();
}
Dial.prototype.create = function() {
this.createSvg();
this.createDefs();
this.createSlice();
this.createOverlay();
this.createText();
this.createArrow();
this.container.appendChild(this.svg);
};
Dial.prototype.createSvg = function() {
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
svg.setAttribute('width', this.size + 'px');
svg.setAttribute('height', this.size + 'px');
this.svg = svg;
};
Dial.prototype.createDefs = function() {
var defs = document.createElementNS("http://www.w3.org/2000/svg", "defs");
var linearGradient = document.createElementNS("http://www.w3.org/2000/svg", "linearGradient");
linearGradient.setAttribute('id', 'gradient');
var stop1 = document.createElementNS("http://www.w3.org/2000/svg", "stop");
stop1.setAttribute('stop-color', 'black');
stop1.setAttribute('offset', '0%');
linearGradient.appendChild(stop1);
var stop2 = document.createElementNS("http://www.w3.org/2000/svg", "stop");
stop2.setAttribute('stop-color', 'black');
stop2.setAttribute('offset', '100%');
linearGradient.appendChild(stop2);
var linearGradientBackground = document.createElementNS("http://www.w3.org/2000/svg", "linearGradient");
linearGradientBackground.setAttribute('id', 'gradient-background');
var stop1 = document.createElementNS("http://www.w3.org/2000/svg", "stop");
stop1.setAttribute('stop-color', 'rgba(0, 0, 0, 0.2)');
stop1.setAttribute('offset', '0%');
linearGradientBackground.appendChild(stop1);
var stop2 = document.createElementNS("http://www.w3.org/2000/svg", "stop");
stop2.setAttribute('stop-color', 'rgba(0, 0, 0, 0.05)');
stop2.setAttribute('offset', '100%');
linearGradientBackground.appendChild(stop2);
defs.appendChild(linearGradient);
defs.appendChild(linearGradientBackground);
this.svg.appendChild(defs);
this.defs = defs;
};
Dial.prototype.createSlice = function() {
var slice = document.createElementNS("http://www.w3.org/2000/svg", "path");
slice.setAttribute('fill', 'none');
slice.setAttribute('stroke', 'url(#gradient)');
slice.setAttribute('stroke-width', this.strokeWidth);
slice.setAttribute('transform', 'translate(' + this.strokeWidth / 2 + ',' + this.strokeWidth / 2 + ')');
slice.setAttribute('class', 'animate-draw');
this.svg.appendChild(slice);
this.slice = slice;
};
Dial.prototype.createOverlay = function() {
var r = this.size - (this.size / 2) - this.strokeWidth / 2;
var circle = document.createElementNS("http://www.w3.org/2000/svg", "circle");
circle.setAttribute('cx', this.size / 2);
circle.setAttribute('cy', this.size / 2);
circle.setAttribute('r', r);
circle.setAttribute('fill', 'url(#gradient-background)');
this.svg.appendChild(circle);
this.overlay = circle;
};
Dial.prototype.createText = function() {
var fontSize = this.size / 3.5;
var text = document.createElementNS("http://www.w3.org/2000/svg", "text");
text.setAttribute('x', (this.size / 2) + fontSize / 7.5);
text.setAttribute('y', (this.size / 2) + fontSize / 4);
text.setAttribute('font-family', 'Century Gothic, Lato');
text.setAttribute('font-size', fontSize);
text.setAttribute('fill', '#78F8EC');
text.setAttribute('text-anchor', 'middle');
var tspanSize = fontSize / 3;
text.innerHTML = 0 + '<tspan font-size="' + tspanSize + '" dy="' + -tspanSize * 1.2 + '">%</tspan>';
this.svg.appendChild(text);
this.text = text;
};
Dial.prototype.createArrow = function() {
var arrowSize = this.size / 10;
var arrowYOffset, m;
if (this.direction === 'up') {
arrowYOffset = arrowSize / 2;
m = -1;
} else if (this.direction === 'down') {
arrowYOffset = 0;
m = 1;
}
var arrowPosX = ((this.size / 2) - arrowSize / 2);
var arrowPosY = (this.size - this.size / 3) + arrowYOffset;
var arrowDOffset = m * (arrowSize / 1.5);
var arrow = document.createElementNS("http://www.w3.org/2000/svg", "path");
arrow.setAttribute('d', 'M 0 0 ' + arrowSize + ' 0 ' + arrowSize / 2 + ' ' + arrowDOffset + ' 0 0 Z');
arrow.setAttribute('fill', '#97F8F0');
arrow.setAttribute('opacity', '0.6');
arrow.setAttribute('transform', 'translate(' + arrowPosX + ',' + arrowPosY + ')');
this.svg.appendChild(arrow);
this.arrow = arrow;
};
Dial.prototype.animateStart = function() {
var v = 0;
var self = this;
var intervalOne = setInterval(function() {
var p = +(v / self.value).toFixed(2);
var a = (p < 0.95) ? 2 - (2 * p) : 0.05;
v += a;
if (v >= +self.value) {
v = self.value;
clearInterval(intervalOne);
}
self.setValue(v);
}, 10);
};
Dial.prototype.animateReset = function() {
this.setValue(0);
};
Dial.prototype.polarToCartesian = function(centerX, centerY, radius, angleInDegrees) {
var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0;
return {
x: centerX + (radius * Math.cos(angleInRadians)),
y: centerY + (radius * Math.sin(angleInRadians))
};
}
Dial.prototype.describeArc = function(x, y, radius, startAngle, endAngle) {
var start = this.polarToCartesian(x, y, radius, endAngle);
var end = this.polarToCartesian(x, y, radius, startAngle);
var largeArcFlag = endAngle - startAngle <= 180 ? "0" : "1";
var d = [
"M", start.x, start.y,
"A", radius, radius, 0, largeArcFlag, 0, end.x, end.y
].join(" ");
return d;
}
Dial.prototype.setValue = function(value) {
var c = (value / 100) * 360;
if (c === 360)
c = 359.99;
var xy = this.size / 2 - this.strokeWidth / 2;
var d = this.describeArc(xy, xy, xy, 180, 180 + c);
this.slice.setAttribute('d', d);
var tspanSize = (this.size / 3.5) / 3;
this.text.innerHTML = Math.floor(value) + '<tspan font-size="' + tspanSize + '" dy="' + -tspanSize * 1.2 + '">%</tspan>';
};
var containers = document.getElementsByClassName("chart");
var dial = new Dial(containers[0]);
dial.animateStart();