-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
109 lines (92 loc) · 2.98 KB
/
Copy pathscript.js
File metadata and controls
109 lines (92 loc) · 2.98 KB
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
"use strict";
const screen = document.getElementById("screen");
const xmlns = "http://www.w3.org/2000/svg";
const xlinkns = "http://www.w3.org/1999/xlink";
window.addEventListener(
"pointermove",
(e) => {
pointer.x = e.clientX;
pointer.y = e.clientY;
rad = 0;
},
false
);
const resize = () => {
width = window.innerWidth;
height = window.innerHeight;
};
let width, height;
window.addEventListener("resize", () => resize(), false);
resize();
const prepend = (use, i) => {
const elem = document.createElementNS(xmlns, "use");
elems[i].use = elem;
elem.setAttributeNS(xlinkns, "xlink:href", "#" + use);
screen.prepend(elem);
};
const N = 40;
const elems = [];
for (let i = 0; i < N; i++) elems[i] = { use: null, x: width / 2, y: 0 };
const pointer = { x: width / 2, y: height / 2 };
const radm = Math.min(pointer.x, pointer.y) - 20;
let frm = Math.random();
let rad = 0;
for (let i = 1; i < N; i++) {
if (i === 1) prepend("Cabeza", i);
else if (i === 8 || i === 14) prepend("Aletas", i);
else prepend("Espina", i);
}
const updateDragonGlow = () => {
let totalDistance = 0;
for (let i = 1; i < N; i++) {
const dx = elems[i].x - elems[i-1].x;
const dy = elems[i].y - elems[i-1].y;
totalDistance += Math.sqrt(dx * dx + dy * dy);
}
const avgDistance = totalDistance / (N - 1);
const isStretched = avgDistance > 25;
for (let i = 1; i < N; i++) {
const elem = elems[i].use;
if (elem) {
elem.classList.remove('dragon-stretched', 'dragon-collapsed', 'dragon-head', 'dragon-fins');
if (i === 1) {
elem.classList.add('dragon-head');
} else if (i === 8 || i === 14) {
elem.classList.add('dragon-fins');
} else {
elem.classList.add(isStretched ? 'dragon-stretched' : 'dragon-collapsed');
}
}
}
};
const run = () => {
requestAnimationFrame(run);
let e = elems[0];
const ax = (Math.cos(3 * frm) * rad * width) / height;
const ay = (Math.sin(4 * frm) * rad * height) / width;
e.x += (ax + pointer.x - e.x) / 10;
e.y += (ay + pointer.y - e.y) / 10;
for (let i = 1; i < N; i++) {
let e = elems[i];
let ep = elems[i - 1];
const a = Math.atan2(e.y - ep.y, e.x - ep.x);
e.x += (ep.x - e.x + (Math.cos(a) * (100 - i)) / 5) / 4;
e.y += (ep.y - e.y + (Math.sin(a) * (100 - i)) / 5) / 4;
const s = (162 + 4 * (1 - i)) / 50;
e.use.setAttributeNS(
null,
"transform",
`translate(${(ep.x + e.x) / 2},${(ep.y + e.y) / 2}) rotate(${
(180 / Math.PI) * a
}) translate(${0},${0}) scale(${s},${s})`
);
}
updateDragonGlow();
if (rad < radm) rad++;
frm += 0.003;
if (rad > 60) {
pointer.x += (width / 2 - pointer.x) * 0.05;
pointer.y += (height / 2 - pointer.y) * 0.05;
}
};
run();