Test Profile
1const texts = [
2 "Linux enthusiast",
3 "I love Nintendo",
4 "Open Source everything",
5 "Lord of The Rings is the best trilogy ever made",
6 "Plain HTML,CSS and JS are my favorite Web Dev tools",
7];
8const facts = document.getElementById("Facts");
9
10let index = 0;
11
12function showText() {
13 facts.textContent = texts[index];
14 facts.style.opacity = 1;
15
16 setTimeout(() => {
17 facts.style.opacity = 0;
18 }, 3500);
19
20 index = (index + 1) % texts.length;
21}
22
23showText();
24setInterval(showText, 4000);