<solidcolor> - SVG: Scalable Vector Graphics 编辑
Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The <solidcolor>
SVG element lets authors define a single color for use in multiple places in an SVG document. It is also useful as away of animating a palette colors.
Note: This is an experimental technology, and not yet implemented in browsers. A workaround is to use a <linearGradient>
with only one color stop. This is less elegant, and unlike <solidcolor>
, cannot itself be used in the definition of gradients.
Usage context
missing
Attributes
Global attributes
Specific attributes
None.
DOM interface
This element implements the SVGSolidcolorElement
interface.
Example
SVG
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200" height="150">
<defs>
<!-- solidColor is experimental. -->
<solidcolor id="myColor" solid-color="gold" solid-opacity="0.8"/>
<!-- linearGradient with a single color stop is a less elegant way to
achieve the same effect, but it works in current browsers. -->
<linearGradient id="myGradient">
<stop offset="0" stop-color="green" />
</linearGradient>
</defs>
<text x="10" y="20">Circles colored with solidColor</text>
<circle cx="150" cy="65" r="35" stroke-width="2" stroke="url(#myColor)"
fill="white"/>
<circle cx="50" cy="65" r="35" fill="url(#myColor)"/>
<text x="10" y="120">Circles colored with linearGradient</text>
<circle cx="150" cy="165" r="35" stroke-width="2" stroke="url(#myGradient)"
fill="white"/>
<circle cx="50" cy="165" r="35" fill="url(#myGradient)"/>
</svg>
Result
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论