ここに表示される 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>
次に、スクリプトでパターンを使用する楕円を作成しました。問題は、楕円を動かすと、パターンが楕円と一緒に移動するのではなく、その背後に留まることです。
要素にとどまるようにパターンを構成するにはどうすればよいですか?