HTML | Propiedad DOM TouchEvent altKey

La propiedad TouchEvent altKey es una propiedad de solo lectura y se usa para devolver un valor booleano que indica si se presionó o no la tecla «ALT» cuando se activó un evento táctil . La propiedad TouchEvent altKey en su mayoría devuelve false porque, por lo general, los dispositivos táctiles no tienen una tecla alt. 

Sintaxis:

event.altKey

Valor devuelto: Devuelve verdadero si se presiona la tecla alt, de lo contrario devuelve falso. 

El siguiente programa ilustra la propiedad TouchEvent altKey: 

Ejemplo: Averiguar si se presionó o no la tecla “ALT” en la pantalla táctil. 

html

<!DOCTYPE html>
<html>
<meta name="viewport"
      content="width=device-width,
               initial-scale=1">
 
<head>
    <title>TouchEvent altKey property in HTML</title>
   
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body ontouchstart="isKeyPressed(event)">
 
    <h1>GeeksforGeeks</h1>
    <h2>TouchEvent altKey property</h2>
    <br>
 
    <p>Touch somewhere in the document and wait for
      an alert to tell if the ALT key was pressed or not.</p>
 
    <script>
        function count(event) {
           
            //  Check whether the ALT key has been pressed
            //  or not.
            if (event.altKey) {
                alert("ALT key has been pressed!");
            } else {
                alert("ALT key has not been pressed!");
            }
        }
    </script>
 
</body>
 
</html>

Producción:

  • Antes de hacer clic en el botón: 

  • Después de hacer clic en el botón: 

Navegadores compatibles:

  • Google Chrome 22 y superior
  • Edge 79 y superior
  • Firefox 52 y superior
  • Ópera 15 y superior

Publicación traducida automáticamente

Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *