From e391cbb1201af900282c3b9b86725620541d3e4b Mon Sep 17 00:00:00 2001 From: Shivam Singh Date: Thu, 4 Jan 2024 23:12:06 +0530 Subject: [PATCH] modified --- index.html | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 59f0ecb..d9c33c7 100644 --- a/index.html +++ b/index.html @@ -206,11 +206,22 @@

+ var strings = ['To-Do List 📝', 'Organize tasks, boost daily productivity! 🚀.', 'Achieve Your Goals One Task at a Time 📃', 'Plan, Act, Achieve: Get Started Now! 😉..']; + + function startTypedAnimation() { + var typed = new Typed('#element', { + strings: strings, + typeSpeed: 50, + onComplete: function () { + typed.reset(); + strings.push(strings.shift()); + }, + }); + } + + startTypedAnimation(); + +