Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

105
Vistas
How to stop scrolling the page when a swipe is noticed?

I've made a game in which when i swipe on the canvas it changes directions , but on swiping down or up on the canvas the whole page scrolls , how can I avoid scrolling just on the canvas , but not outside the page?

  Area.addEventListener("touchstart", startTouch, false);
  Area.addEventListener("touchmove", moveTouch, false);

   // Swipe Up / Down / Left / Right
    var initialX = null;
      var initialY = null;
   
    function startTouch(e) {
    initialX = e.touches[0].clientX;
initialY = e.touches[0].clientY;
  };

   function moveTouch(e) {
if (initialX === null) {
  return;
}

if (initialY === null) {
  return;
}

var currentX = e.touches[0].clientX;
var currentY = e.touches[0].clientY;

var diffX = initialX - currentX;
var diffY = initialY - currentY;

if (Math.abs(diffX) > Math.abs(diffY)) {
  // sliding horizontally
  if (diffX > 0) {
    // swiped left
    console.log("swiped left");
  } else {
    // swiped right
    console.log("swiped right");
  }  
} else {
  // sliding vertically
  if (diffY > 0) {
    // swiped up
    console.log("swiped up");
  } else {
    // swiped down
    console.log("swiped down");
  }  
}

initialX = null;
initialY = null;

e.preventDefault();
 };
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda