From 3908899fb6a5cb52c50d8e0439e645fa191bf487 Mon Sep 17 00:00:00 2001 From: funaki-roger Date: Thu, 12 Sep 2024 16:05:33 -0300 Subject: [PATCH] add: text typing animation on home page --- index.html | 3 ++- js/script.js | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index b2d1ef9..85f5e0d 100644 --- a/index.html +++ b/index.html @@ -49,7 +49,7 @@

Hello, My name is Roger Funaki

-

I'm a Quality Assurance Analyst

+

I'm a QA Analyst

🛠️ HARD SKILLS:

@@ -1155,6 +1155,7 @@

Theme Colors

+ diff --git a/js/script.js b/js/script.js index e69de29..ddce63e 100644 --- a/js/script.js +++ b/js/script.js @@ -0,0 +1,7 @@ +/* typing animation */ +var typed = new Typed(".typing", { + strings: ["", "I work with", "WEB | Mobile | API | Scrum Master"], + typeSpeed: 150, + backSpeed: 250, + loop: true +});