SVG 教程
SVG 意为可缩放矢量图形(Scalable Vector Graphics)
SVG 使用 XML 格式定义图像
现在开始学习 SVG!
学习之前应具备的基础知识:
继续学习之前,你应该对以下内容有基本的了解:
如果希望首先学习这些内容,请在本站的首页选择相应的教程
SVG 实例
<html> <body> <h1>My first SVG</h1> <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" /> </svg> </body> </html>运行结果: