我有一个简单的孵化模式:
<defs>
<pattern id="pattern1" patternUnits="userSpaceOnUse"
x="0" y="0" width="10" height="10"
>
<line x1="0" y1="0" x2="10" y2="10" stroke="black" />
<line x1="0" y1="-10" x2="20" y2="10" stroke="black" />
<line x1="-10" y1="0" x2="10" y2="20" stroke="black" />
</pattern>
</defs>
<rect fill="url(#pattern1)" stroke="black"
x="100" y="100" width="200" height="100"/>
<rect fill="url(#pattern1)" stroke="red"
x="100" y="300" width="200" height="100"/>
有没有办法在使用时设置图案中线条的颜色?例如,我想在第二个rect
中将颜色设置为红色。
答案 0 :(得分:0)
如果更新了图案中的颜色,则会影响两个版面。如果你想在不同的版本中使用不同的图案颜色,你将不得不使用不同的图案。