iT邦幫忙

鐵人檔案

2022 iThome 鐵人賽
回列表
Modern Web

利用JS30逼自己30天完成的筆記 系列

利用工程師Wes Bos所建立一系列課程,讓自己更加熟練JS的觀念,希望除了自己以外,也能讓其他人看得懂。

參賽天數 25 天 | 共 25 篇文章 | 0 人訂閱 訂閱系列文 RSS系列文
DAY 21

[Day 21] Geolocation

<script> const arrow = document.querySelector('.arrow'); const s...

2022-10-05 ‧ 由 耀耀 分享
DAY 22

[Day 22] Follow Along Link Highlighter

<script> const triggers = document.querySelectorAll('a'); const highli...

2022-10-06 ‧ 由 耀耀 分享
DAY 23

[Day 23] Speech Synthesis

<script> const msg = new SpeechSynthesisUtterance(); let voices = [];...

2022-10-07 ‧ 由 耀耀 分享
DAY 24

[Day 24] Sticky Nav

<script> const nav = document.querySelector('#main'); let topOf...

2022-10-08 ‧ 由 耀耀 分享
DAY 25

[Day 25] Event Capture, Propagation, Bubbling and Once

<script> const divs = document.querySelectorAll('div'); const button =...

2022-10-09 ‧ 由 耀耀 分享