30 Day Vanilla JS Coding Challenge Study - 8주차
- Geolocation based Speedometer and Compass
- Follow Along Links
- Speech Synthesis
21. Geolocation based Speedometer and Compass
영상: https://youtu.be/X7Cbtra0C6I
Geolocation
기반의 속도계 & 나침반
1 | const arrow = document.querySelector('.arrow'); |
22. Follow Along Links
영상: https://youtu.be/POP_qri7RA8
getBoundingClientRect()를 활용한 마우스 오버 링크 스타일링
1 | const triggers = document.querySelectorAll('a'); |
23. Speech Synthesis
영상: https://youtu.be/saCpKH_xdgs
SpeechSynthesisUtterance API를 활용한 다국어 TTS
1 | // 스피치 인스턴스 생성 |