D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
tmcw
Full window
Github gist
Find your device pixel ratio!
<!DOCTYPE html> <html> <head> <title>device pixel ratio!</title> <style> body { font:bold 150px 'Helvetica'; } </style> </head> <body> <script> document.body.innerHTML = window.devicePixelRatio; </script> </body> </html>