Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
<set> does seem to be a bit finicky for this case, doesn't it? You can use <animateTransform> if you set the values attribute on it instead of the to attribute, like this: <animate...
Answer
#1: Initial revision
`<set>` does seem to be a bit finicky for this case, doesn't it? You can use `<animateTransform>` if you set the [`values`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/values) attribute on it instead of the `to` attribute, like this: ``` <animateTransform attributeName="transform" type="translate" values="0 0" begin="group.click" dur="2s" /> ```