-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
49 lines (41 loc) · 1.08 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
// For updating counters
const counters = document.querySelectorAll(".counter");
const speed = 250;
counters.forEach(counter => {
const updateCount = () => {
// + Converts String to a Number
const target = +counter.getAttribute("data-target");
const count = +counter.innerHTML;
const inc = Math.round(target / speed);
if (count < target) {
counter.innerHTML = Math.ceil(count + inc);
setTimeout(updateCount, 1);
} else {
count.innerHTML = target;
}
};
updateCount();
});
// For text animation in header
const text = document.querySelector(".fancy");
const strText = text.textContent;
const splitText = strText.split("");
text.textContent = "";
for (let i = 0; i < strText.length; i++) {
text.innerHTML += "<span>" + splitText[i] + "</span>";
}
let char = 0;
let timer = setInterval(onTick, 100);
function onTick() {
const span = text.querySelectorAll("span")[char];
span.classList.add("fade");
char++;
if (char === splitText.length) {
complete();
return;
}
}
function complete() {
clearInterval(timer);
timer = null;
}