我的应用程序中有一个 SVG 路径元素,例如:
<path d="M100,100 Q200,400,300,100"/>
在按钮单击中,我必须将此路径向左移动,例如,从 100 到 200。我通过变换做到了:
$('.path').each(function () {
$(this).attr('transform', 'translate(100, 0)');
});
但是,在下一次单击时它不会移动。如何让路径元素在每次点击时移动?
我的应用程序中有一个 SVG 路径元素,例如:
<path d="M100,100 Q200,400,300,100"/>
在按钮单击中,我必须将此路径向左移动,例如,从 100 到 200。我通过变换做到了:
$('.path').each(function () {
$(this).attr('transform', 'translate(100, 0)');
});
但是,在下一次单击时它不会移动。如何让路径元素在每次点击时移动?