// HTML要素を取得
const target = document.querySelector('#target')
// タッチイベントを追加
target.addEventListener('touchstart', (event) => {
// タッチが開始された時の処理(指が触れた時)
console.log('開始', event)
})
target.addEventListener('touchmove', (event) => {
// タッチが移動した時の処理(指を動かした時)
console.log('移動', event)
})
target.addEventListener('touchend', (event) => {
// タッチが終了した時の処理(指を離した時)
console.log('終了', event)
})
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme