summaryrefslogtreecommitdiffstats
path: root/assets/js/typing.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/typing.js')
-rw-r--r--assets/js/typing.js69
1 files changed, 69 insertions, 0 deletions
diff --git a/assets/js/typing.js b/assets/js/typing.js
new file mode 100644
index 0000000..369fed7
--- /dev/null
+++ b/assets/js/typing.js
@@ -0,0 +1,69 @@
+/**
+ * typing.js
+ * Typing animation for .hero-role / #typed element
+ */
+
+export function initTyping() {
+ 'use strict';
+
+ const typedElement = document.getElementById('typed');
+ if (!typedElement) return;
+
+ const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
+ const phrasesJson = typedElement.getAttribute('data-phrases');
+ let phrases = [];
+
+ if (phrasesJson) {
+ try {
+ phrases = JSON.parse(phrasesJson);
+ } catch (e) {
+ console.warn('Failed to parse typing phrases:', e);
+ phrases = ['Security & Web Dev', 'WordPress Developer'];
+ }
+ }
+
+ if (!phrases.length) return;
+
+ let currentPhraseIndex = 0;
+ let currentCharIndex = 0;
+ let isDeleting = false;
+
+ function type() {
+ const phrase = phrases[currentPhraseIndex];
+ const speed = isDeleting ? 50 : 100;
+
+ if (isDeleting) {
+ currentCharIndex--;
+ } else {
+ currentCharIndex++;
+ }
+
+ typedElement.textContent = phrase.substring(0, currentCharIndex);
+
+ // Add cursor
+ if (!isDeleting && currentCharIndex === phrase.length) {
+ typedElement.innerHTML += '<span class="cursor"></span>';
+ } else if (isDeleting && currentCharIndex === 0) {
+ currentPhraseIndex = (currentPhraseIndex + 1) % phrases.length;
+ isDeleting = false;
+ setTimeout(type, 500);
+ return;
+ } else {
+ typedElement.innerHTML = phrase.substring(0, currentCharIndex) + '<span class="cursor"></span>';
+ }
+
+ if (!isDeleting && currentCharIndex === phrase.length) {
+ isDeleting = true;
+ setTimeout(type, 2000);
+ } else {
+ setTimeout(type, prefersReducedMotion ? 0 : speed);
+ }
+ }
+
+ if (prefersReducedMotion) {
+ // Just show the first phrase without animation
+ typedElement.textContent = phrases[0];
+ } else {
+ type();
+ }
+}