-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathdemo.js
29 lines (24 loc) · 953 Bytes
/
demo.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
(function(){
var path = document.getElementById('path'),
segment = new Segment(path),
begin = document.getElementById('begin'),
end = document.getElementById('end'),
duration = document.getElementById('duration'),
easing = document.getElementById('easing'),
draw = document.getElementById('draw'),
random = document.getElementById('random'),
length = path.getTotalLength(),
randomBegin,
randomEnd;
draw.onclick = function(){
segment.draw(begin.value, end.value, duration.value, {easing: d3[easing.value]});
};
random.onclick = function(){
randomBegin = getRandomInt(0, length);
randomEnd = getRandomInt(0, length);
segment.draw(randomBegin, randomEnd, duration.value, {easing: d3[easing.value]});
};
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
})();