HTML | Propiedad DOM TouchEvent ctrlKey

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

Sintaxis:

event.ctrlKey

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

El siguiente programa ilustra la propiedad TouchEvent ctrlKey: 

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

HTML

<!DOCTYPE html>
<html>
<meta name="viewport"
      content="width=device-width,
               initial-scale=1">
 
<head>
    <title>TouchEvent ctrlKey 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 ctrlKey property</h2>
    <br>
 
    <p>Touch somewhere in the document and wait
      for an alert to tell if the CTRL key was
      pressed or not.</p>
 
    <script>
        function count(event) {
           
            //  Check ctrl key has been pressed or not.
            if (event.ctrlKey) {
                alert("CTRL key has been pressed!");
            } else {
                alert("CTRL 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
  • Firefox 52 y superior
  • Edge 79 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 *