pattern笔刷填充元素无fill,有stroke,填充内容全被stroke占满
<g transform="translate( 100, 500 )"> <defs> <pattern height=".5" id="pattern1" patternContentUnits="objectBoundingBox" patternUnits="objectBoundingBox" width=".5"> <circle cx=".25" cy=".25" fill="red" r=".25" ></circle> <!--如果使用fill为none,stroke会占满整个填充--> <!--<circle cx=".25" cy=".25" fill="none" r=".25" stroke="gray" ></circle>--> </pattern> </defs> <rect fill="url(#pattern1)" height="100" width="100" stroke="rgba(0, 0, 0, .4)"></rect> </g>
# 上面的pattern如果使用的circle的fill设置为none,stroke设置了之后无论如何,纹理全被stroke颜色填充
填空就不能使用圆形边框填空吗?
还请高人解答