SVG in Browser

SVG 可以直接嵌入到 HTML 文件中。

SVG

<svg xmlns="http://www.w3.org/2000/svg">
  <rect x="30" y="30" width="100" height="60" fill="none"></rect>
</svg>

Raphaël - library for SVG or VML

// Creates canvas 320 × 200 at 10, 50
var paper = Raphael(10, 50, 320, 200);

var circle = paper.circle(50, 40, 10);
circle.attr("fill", "#f00");
circle.attr("stroke", "#fff");

The author also provide a set of SVG icons

React + SVG

...