Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hello world!
by AdamJanes | Sep 3, 2021 | Uncategorized | 1 comment
var words = ['Organize', 'Attend', 'Share'];
window.addEventListener('load', function() {
gsap.fromTo('.cursor', {
autoAlpha: 0
}, {
autoAlpha: 1,
duration: 0.5,
repeat: -1,
ease: SteppedEase.config(1)
});
var tl = new TimelineMax({
ease: SteppedEase.config(15),
opacity: 0,
repeat: -1,
});
var textClass = '.typewriter-text';
var defaults = {
opacity: 1,
yoyo: true,
repeat: 1,
repeatDelay: 1,
};
words.forEach(function(word) {
tl.add(TweenMax.to(textClass, Object.assign({
text: word
}, defaults)));
});
});
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.