devhackerone / homepage

My very own personal website. Basically this is just a résumé.
https://devhackerone.github.io/homepage/
MIT License
0 stars 0 forks source link

Add intresting JavaScript #16

Closed devhackerone closed 5 years ago

devhackerone commented 5 years ago
$(document).ready(function() {
    var $element = $('#bubble');
    var phrases = [
        'Résumé',
        ];
    var index = -1;
    (function loopAnimation() {
        index = (index + 1) % phrases.length;
        bubbleText({
            element: $element,
            newText: phrases[index],
            letterSpeed: 90,
            callback: function() {
                setTimeout(loopAnimation, 100000);
            },
        });
    })();
});