add a scrollto for mobile focus on textarea
This commit is contained in:
parent
1d735144ed
commit
2a239d7aab
1 changed files with 6 additions and 0 deletions
|
|
@ -57,6 +57,12 @@
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
let textarea = document.querySelector('textarea') as HTMLElement
|
||||||
|
|
||||||
|
textarea?.addEventListener('focus', () => {
|
||||||
|
window.scrollTo(0, textarea.offsetTop - 100);
|
||||||
|
})
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
gsap.killTweensOf('.toCanvas, .lineChildren');
|
gsap.killTweensOf('.toCanvas, .lineChildren');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue