D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
naoyak
Full window
Github gist
perturbed smiley
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } svg { border: 1px solid #000; } .face { fill: red; fill-opacity: 0.7; } .eye { fill: lightgreen; } </style> </head> <body> <svg width='960' height='500'> <circle class="face" cx=225 cy=125 r=60 /> <circle class="eye" cx=200 cy=100 r=10 /> <circle class="eye" cx=250 cy=100 r=10 /> <path d='M 190 150 C 215 175 235 125 260 140' fill='none' stroke-width='3px' stroke='black'/> </svg> </body>
https://d3js.org/d3.v4.min.js