From 63d6675ce5b497a81fed4d597b856424112242a1 Mon Sep 17 00:00:00 2001 From: PalakChanchlani14 <2022.palak.chanchlani@ves.ac.in> Date: Mon, 13 Oct 2025 21:43:04 +0530 Subject: [PATCH 1/5] Create .keep --- js/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 js/.keep diff --git a/js/.keep b/js/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/js/.keep @@ -0,0 +1 @@ + From c6cc63f9b4218dcfea50034db2685273104e3fd0 Mon Sep 17 00:00:00 2001 From: PalakChanchlani14 <2022.palak.chanchlani@ves.ac.in> Date: Mon, 13 Oct 2025 21:43:58 +0530 Subject: [PATCH 2/5] Add files via upload --- js/script.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 js/script.js diff --git a/js/script.js b/js/script.js new file mode 100644 index 0000000..941cc88 --- /dev/null +++ b/js/script.js @@ -0,0 +1,16 @@ +// ✨ Typing Animation in Tagline +document.addEventListener("DOMContentLoaded", function () { + const tagline = document.querySelector("#tagline i"); + const text = '"Trust me I\'m the Doctor"'; + let index = 0; + + function type() { + if (index < text.length) { + tagline.textContent += text.charAt(index); + index++; + setTimeout(type, 100); + } + } + + type(); +}); From 6a28efe73e62e24222eff270e42321dcb3c298e3 Mon Sep 17 00:00:00 2001 From: PalakChanchlani14 <2022.palak.chanchlani@ves.ac.in> Date: Mon, 13 Oct 2025 21:51:25 +0530 Subject: [PATCH 3/5] Delete js/.keep --- js/.keep | 1 - 1 file changed, 1 deletion(-) delete mode 100644 js/.keep diff --git a/js/.keep b/js/.keep deleted file mode 100644 index 8b13789..0000000 --- a/js/.keep +++ /dev/null @@ -1 +0,0 @@ - From b3b7bab31cc439d9d3da69870ac5e05372b68ee9 Mon Sep 17 00:00:00 2001 From: PalakChanchlani14 <2022.palak.chanchlani@ves.ac.in> Date: Mon, 13 Oct 2025 22:04:47 +0530 Subject: [PATCH 4/5] Update script.js feat: Added script.js to js folder for profile enhancements --- js/script.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index 941cc88..cbb4533 100644 --- a/js/script.js +++ b/js/script.js @@ -1,4 +1,5 @@ -// ✨ Typing Animation in Tagline + +// Typing Animation in Tagline document.addEventListener("DOMContentLoaded", function () { const tagline = document.querySelector("#tagline i"); const text = '"Trust me I\'m the Doctor"'; From 366ca3c35e5870796e6e882643cda2eedc9ddbd8 Mon Sep 17 00:00:00 2001 From: PalakChanchlani14 <2022.palak.chanchlani@ves.ac.in> Date: Mon, 13 Oct 2025 22:13:41 +0530 Subject: [PATCH 5/5] Update script.js --- js/script.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/script.js b/js/script.js index cbb4533..875d568 100644 --- a/js/script.js +++ b/js/script.js @@ -1,4 +1,3 @@ - // Typing Animation in Tagline document.addEventListener("DOMContentLoaded", function () { const tagline = document.querySelector("#tagline i"); @@ -12,6 +11,6 @@ document.addEventListener("DOMContentLoaded", function () { setTimeout(type, 100); } } - type(); }); +