jquery スマホのタッチ開始のイベントを取得する
jqueryで、スマホのタッチ開始のイベントを取得するサンプルコードを記述してます。 「on」メソッドに「touchstart」を使用してます。
環境
- OS windows10 pro 64bit
- jquery 3.6.0
- Apache 2.4.43
- ブラウザ chrome 101.0.4951.54
スマホのタッチ開始のイベントを取得
スマホのタッチ開始のイベントを取得するには、「on」メソッドに「touchstart」を指定します。
$('要素を指定').on('touchstart', function() {
// 処理
})
以下は、指定した要素「id=”img”」をタッチすると、画像が変更されて、タッチが終わると元の画像に戻るサンプルコードとなります。
※デザインは「semantic-ui」を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<!-- semantic.css -->
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
<script src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<style>
body>.grid {
height: 100%;
}
.fields {
margin-top: 50px;
}
</style>
<script>
$(function () {
// タッチ開始イベント
$('#img').on('touchstart', function () {
$('#img').attr('src', 'sample.jpg')
})
// タッチ終了イベント
$('#img').on('touchend', function () {
$('#img').attr('src', 'hoge.jpg')
})
})
</script>
<body>
<div class="ui center aligned grid">
<img id="img" class="ui rounded image fields" src="hoge.jpg">
</div>
</body>
</html>
タッチで画像が変更されていることが確認できます。
また、以下のようにアロー関数を使用して記述することも可能です。
※アロー関数を使用するとthisの挙動が異なります。
$(() => {
// タッチ開始イベント
$('#img').on('touchstart', () => {
$('#img').attr('src', 'sample.jpg')
})
// タッチ終了イベント
$('#img').on('touchend', () => {
$('#img').attr('src', 'hoge.jpg')
})
})
-
前の記事
VSCODE コメントアウトに取り消し線を入れる 2022.05.20
-
次の記事
javascript エラー「TypeError: Attempted to assign to readonly property.」の解決方法 2 2022.05.21
コメントを書く