svg(xmlns="http://www.w3.org/2000/svg",viewBox="0 0 100 100")
rect(width="100", height="100", fill="blue")
each c in [{r:50,fill:"red"},{r:20,fill:"orange"}]
circle(cx="50", cy="50", r=c.r, fill=c.fill)
JavaScript语言:
var pug = require('pug');
var svgdoc = pug.compileFileClient('/svgtemplate.pug', {title: "Test"});
1条答案
按热度按时间p4tfgftt1#
pug中生成SVG元素/文档的示例。静态数组可以替换为包含数据的对象或数组。
svgtemplate.pug:
JavaScript语言: