Ocultar el cursor en una página web usando CSS y JavaScript

Dado un documento HTML y la tarea es ocultar el cursor del elemento dado usando CSS y JavaScript.

Acercarse:

  • Primero, seleccione el elemento donde el elemento del cursor debe ocultarse.
  • Agregue cursor de estilo CSS : ninguno a la clase a.
  • Agregue el nombre de la clase (nombre de la clase del cursor de estilo CSS: ninguno) al elemento particular donde se ocultará el elemento del cursor.

Ejemplo 1: este ejemplo oculta el cursor del elemento <div>.

<!DOCTYPE HTML> 
<html> 
    <head> 
        <title> 
            Hide the cursor in a element
            using CSS and JavaScript
        </title>
          
        <style>
            #GFG_DIV {
                background: green;
                height: 100px;
                width: 200px;
                margin: 0 auto;
                color: white;
            }
              
            /* CSS style to hide cursor element */
            .newClass {
                cursor: none;
            }
        </style>
    </head> 
      
    <body style = "text-align:center;"> 
          
        <h1 style = "color:green;" > 
            GeeksForGeeks 
        </h1>
          
        <p id = "GFG_UP" style = 
            "font-size: 19px; font-weight: bold;">
        </p>
          
        <div id = "GFG_DIV">
            This is Div box.
        </div>
        <br>
          
        <button onClick = "GFG_Fun()">
            click here
        </button>
          
        <p id = "GFG_DOWN" style =
            "color: green; font-size: 24px; font-weight: bold;">
        </p>
          
        <!-- Script to hide cursor element -->
        <script>
            var up = document.getElementById('GFG_UP');
            var down = document.getElementById('GFG_DOWN');
            var div = document.getElementById('GFG_DIV');
              
            up.innerHTML = "Click on button to hide the cursor from DIV.";
              
            /* Function to add class name to hide cursor element */
            function GFG_Fun() {
                div.classList.add("newClass");
                down.innerHTML = "Cursor is removed from DIV!"; 
            }
        </script> 
    </body> 
</html>                    

Producción:

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

Ejemplo 2: este ejemplo oculta el cursor del <cuerpo> de una página web.

<!DOCTYPE HTML> 
<html> 
    <head> 
        <title> 
            Hide the cursor in a element
            using CSS and JavaScript
        </title>
          
        <style>
            #GFG_DIV {
                background: green;
                height: 100px;
                width: 200px;
                margin: 0 auto;
                color: white;
            }
              
            /* CSS style to hide cursor element */
            .newClass {
                cursor: none;
            }
        </style>
    </head> 
      
    <body style = "text-align:center;" id = "body"> 
      
        <h1 style = "color:green;" > 
            GeeksForGeeks 
        </h1>
          
        <p id = "GFG_UP" style =
            "font-size: 19px; font-weight: bold;">
        </p>
          
        <div id = "GFG_DIV">
            This is Div box.
        </div>
        <br>
          
        <button onClick = "GFG_Fun()">
            click here
        </button>
          
        <p id = "GFG_DOWN" style = 
            "color: green; font-size: 24px; font-weight: bold;">
        </p>
          
        <!-- Script to hide cursor element -->
        <script>
            var up = document.getElementById('GFG_UP');
            var down = document.getElementById('GFG_DOWN');
            var body = document.getElementById('body');
              
            up.innerHTML = "Click on button to hide the cursor from DIV.";
              
            /* Function to add class name to hide cursor element */
            function GFG_Fun() {
                body.classList.add("newClass");
                down.innerHTML = "Cursor is removed from body!"; 
            }
        </script> 
    </body> 
</html>                                

Producción:

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

Publicación traducida automáticamente

Artículo escrito por PranchalKatiyar 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 *