D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
aaizemberg
Full window
Github gist
cambiando el cursor (default -> pointer)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>la manito</title> <style> .circulos { cursor: pointer; } .textos { cursor: pointer; } </style> </head> <body> <svg id="zoom" width="200" height="200"> <circle class="circulos" cx="100" cy="100" r="10" stroke="green" stroke-width="1" fill="yellow" /> <a xlink:href="https://gobiernoabierto.cordoba.gob.ar/funcionarios/oficina/intendente/1" target="_blank"> <text class="textos" x="60" y="125">el intendente</texto> </a> </svg> </body> </html>