我创建了这里看到的 svg 模式:
<pattern id="t" height="20" width="20" patternUnits="userSpaceOnUse" overflow="visible">
<ellipse cx="0" cy="0" rx="20" ry="20" fill="white"/>
<ellipse cx="5" cy="5" rx="15" ry="15" fill="yellow"/>
<ellipse cx="10" cy="10" rx="10" ry="10" fill="blue"/>
<ellipse cx="15" cy="15" rx="5" ry="5" fill="red"/>
</pattern>
然后在我的脚本中,我创建了一个使用该模式的椭圆。问题是,当我移动椭圆时,图案仍然在它后面,而不是随着椭圆移动。
如何配置模式以与元素保持一致?