Event touch Javascript Examples - Purwana Tekno, Software Engineer
    Media Belajar membuat Software Aplikasi, Website, Game, & Multimedia untuk Pemula...

Post Top Ad

Rabu, 01 Maret 2023

Event touch Javascript Examples

Here are some examples of touch events in JavaScript:


Detecting a touch event on a specific element:



<script>
const element = document.getElementById('myElement');

element.addEventListener('touchstart', function(event) {
  console.log('Touch start event detected');
});

element.addEventListener('touchend', function(event) {
  console.log('Touch end event detected');
});

element.addEventListener('touchmove', function(event) {
  console.log('Touch move event detected');
});
</script>


This code attaches event listeners for touchstart, touchend, and touchmove events to the element with the ID "myElement". When a touch event is detected on this element, a message is logged to the console.


Retrieving touch event properties:



const element = document.getElementById('myElement');

element.addEventListener('touchstart', function(event) {
  const touch = event.touches[0];
  console.log(`Touch start detected at (${touch.clientX}, ${touch.clientY})`);
});


This code retrieves the coordinates of the first touch point in a touchstart event and logs them to the console.


Disabling scrolling on touch devices:



const element = document.getElementById('myElement');

element.addEventListener('touchmove', function(event) {
  event.preventDefault();
});


This code disables scrolling on touch devices by preventing the default behavior of touchmove events. When a user tries to scroll by swiping on the element, the page will not scroll. Note that this approach should be used sparingly, as it can interfere with the user experience on touch devices.


These are just a few examples of touch events in JavaScript. There are many other touch events and techniques for working with touch input in web development.

Post Top Ad