mirror of
https://github.com/BeardedTek/flowbite-beardedtek.com.git
synced 2025-12-06 13:41:51 +00:00
10 lines
354 B
JavaScript
10 lines
354 B
JavaScript
const words = document.querySelectorAll('.word-slider div');
|
|
let index = 0;
|
|
|
|
setInterval(() => {
|
|
words[index].classList.remove('visible');
|
|
words[index].classList.add('invisible');
|
|
index = (index + 1) % words.length;
|
|
words[index].classList.remove('invisible');
|
|
words[index].classList.add('visible');
|
|
}, 2000); // change every 2 seconds
|