Skip to content

Instantly share code, notes, and snippets.

@aaizemberg
Last active August 24, 2016 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaizemberg/9e5ccaef315fdd894443225e30c16b59 to your computer and use it in GitHub Desktop.
Save aaizemberg/9e5ccaef315fdd894443225e30c16b59 to your computer and use it in GitHub Desktop.
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment