0
這個問題可能聽起來像一個矛盾,但我有一些由線連接的svg對象。這裏是準系統版本:svg隱藏透明元素下的線段
<svg width="200" height="200">
<defs>
<clipPath id='clipLine'>
<circle cx='0' cy='0' r="30"/>
</clipPath>
</defs>
<rect x='0' y='0' width='200' height='200' fill='rgb(255,128,255)' />
<line x1="50" y1="50" x2="150" y2="75" stroke='red' stroke-width='2' />
<g>
<circle cx="50" cy="50" r="20" stroke="green" stroke-width="4" fill="yellow" />
<circle cx="50" cy="50" r="30" stroke="green" stroke-width="4" fill-opacity='0.0' clip-path="url(#clipLine)"/>
</g>
<g>
<circle cx="150" cy="75" r="20" stroke="green" stroke-width="4" fill="yellow" />
<circle cx="150" cy="75" r="30" stroke="green" stroke-width="4" fill-opacity='0.0' clip-path="url(#clipLine)"/>
</g>
</svg>
我有一個內圈和一個外圈。外圓是透明的,具有可見的周邊,並且該線通過cx,cy座標連接兩個節點。我希望線路只能到達外圈的邊界。
我可以用向量數學計算位置,但是我不知道它會影響性能,當我拖着一堆這些。我可以使用裁剪和蒙版來達到相同的效果嗎?到目前爲止,我只能隱藏圈子和整條線,當我試圖追加剪輯。