Use la propiedad CSS para crear un cursor a mano cuando el usuario se desplaza sobre la lista de elementos. Primero cree una lista de elementos usando la etiqueta HTML <ul> y <li> y luego use la propiedad CSS :hover to cursor:grab; para hacer que el cursor se desplace sobre la lista de elementos.
Sintaxis:
element:hover { cursor:grab/pointer; }
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>make cursor to hand</title> <style> body { width:70%; } h1 { color:green; text-align:center; } li:hover{ cursor:grab; } </style> </head> <body> <h1>GeeksforGeeks</h1> <div class = "sub">Computer Science Subject Lists:</div> <ul> <li>Data Structure</li> <li>Algorithm</li> <li>Operating System</li> <li>Computer Networks</li> <li>C Programming</li> <li>Java</li> <li>DBMS</li> </ul> </body> </html>
Producción:
Ejemplo 2: este ejemplo contiene la propiedad CSS para cambiar la alternativa del puntero del cursor. En este ejemplo, utilice nth-child(2n+1) como cursor:grab; y use nth-child(2n+2) como cursor:pointer;.
<!DOCTYPE html> <html> <head> <title>make cursor to hand</title> <style> body { width:60%; } h1 { color:green; text-align:center; } li { font-size:20px; } li:nth-child(2n+1) { background: green; cursor:grab; width:50%; padding:5px; } li:nth-child(2n+2) { background: #CCC; cursor:pointer; width:50%; padding:5px; } </style> </head> <body> <h1>GeeksforGeeks</h1> <div class = "sub">Computer Science Subject Lists:</div> <ul> <li>Data Structure</li> <li>Algorithm</li> <li>Operating System</li> <li>Computer Networks</li> <li>C Programming</li> <li>Java</li> <li>DBMS</li> </ul> </body> </html>
Producción: