19 lines
767 B
HTML
19 lines
767 B
HTML
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
|
<script>
|
|
$(function () {
|
|
count = 0;
|
|
wordsArray = ["Big data", "Blockchain", "Cloud", "Deep learning", "DevOps",
|
|
"Machine Learning", "Microservices", "Real-time", "Scalability", "Think outside the box", "Web 2.0", "Wev 3.0", "Buzzword",
|
|
];
|
|
setInterval(function () {
|
|
count++;
|
|
$(".buzzword").fadeOut(400, function () {
|
|
$(this).text(wordsArray[count % wordsArray.length]).fadeIn(800);
|
|
});
|
|
}, 4000);
|
|
});
|
|
|
|
</script>
|