add a scrollto for mobile focus on textarea

This commit is contained in:
saiminh 2023-10-03 17:08:50 +02:00
parent 1d735144ed
commit 2a239d7aab

View file

@ -57,6 +57,12 @@
})
})
let textarea = document.querySelector('textarea') as HTMLElement
textarea?.addEventListener('focus', () => {
window.scrollTo(0, textarea.offsetTop - 100);
})
return () => {
gsap.killTweensOf('.toCanvas, .lineChildren');
}