D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
aaizemberg
Full window
Github gist
Tooltips usando SVG y el tag title
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Tooltips usando SVG y el tag title</title> </head> <body> <svg> <rect x="0" fill="#1a9641" width="29" height="20"> <title>agree</title> </rect> <rect x="30" fill="#ffffbf" width="29" height="20"> <title>neutral</title> </rect> <rect x="60" fill="#d7191c" width="29" height="20"> <title>disagree</title> </rect> </svg> </body> </html>