📅  最后修改于: 2023-12-03 15:05:24.771000             🧑  作者: Mango
SVG Use Element 是 SVG (Scalable Vector Graphics) 中的一种元素,用于复用已有的图形元素。
SVG Use Element 有以下属性:
<svg viewBox="0 0 100 100">
<!-- 定义一个图形元素 -->
<circle id="myCircle" cx="50" cy="50" r="40" />
<!-- 复用该图形元素 -->
<use xlink:href="#myCircle" x="10" y="10" />
<use xlink:href="#myCircle" x="40" y="10" width="30" height="30" />
<use xlink:href="#myCircle" x="70" y="10" transform="rotate(45 50 50)" />
</svg>
#
开头。url(#external)
开头。SVG Use Element 是一个十分实用的元素,可以使开发者更加方便地管理和控制 SVG 图形元素。需要注意的是,在进行复用时,属性的设置要十分准确,否则可能会引起不必要的麻烦。