Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

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

75%
+4 −0
Q&A Set transform of SVG element

I'm trying to set the transform attribute of a group within an SVG. Specifically, I'd like to set translate's value to 0 0. I tried using the set element for this but that didn't have an observab...

1 answer  ·  posted 7mo ago by Matthias Braun‭  ·  edited 7mo ago by Matthias Braun‭

Question svg
#2: Post edited by user avatar Matthias Braun‭ · 2023-10-12T11:08:56Z (7 months ago)
spelling, wording
  • I'm trying to set the [`transform`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform) attribute of a group within an SVG.
  • Specifically, I'd like to set [`translate`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform#translate)'s value to `0 0`.
  • I tried using the [`set`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set) element for this but that didn't have an observable effect:
  • <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  • <style>
  • rect {
  • cursor: pointer;
  • fill: papayawhip;
  • }
  • text {
  • font-size: 1px;
  • font-family: monospace;
  • }
  • </style>
  • <g id="group" transform="translate(1 2)">
  • <rect width="4" height="3"></rect>
  • <text x=0.5 y=1.5>Hello</text>
  • <set
  • attributeName="transform"
  • to="translate(0 0)"
  • begin="group.click"
  • dur="2s"
  • />
  • </g>
  • </svg>
  • MDN Playground [here](https://developer.mozilla.org/en-US/play?id=YWnhJH9C%2F43IQPYXUJBkMLwjZ2A3M7ZCD5zjryarPwXaEdO0QQHQFkg2q34Lc9NTwLhGHsXTFK79wokx).
  • Using [`animateTransform`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform) instead works but doesn't move the group instantenously, which I'd prefer:
  • <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  • <style>
  • rect {
  • cursor: pointer;
  • fill: papayawhip;
  • }
  • text {
  • font-size: 1px;
  • font-family: monospace;
  • cursor: pointer;
  • }
  • </style>
  • <g id="group" transform="translate(1 2)">
  • <rect width="4" height="3"></rect>
  • <text x="0.5" y="1.5">Hello</text>
  • <animateTransform
  • attributeName="transform"
  • type="translate"
  • to="0 0"
  • begin="group.click"
  • dur="2s"
  • />
  • </g>
  • </svg>
  • MDN Playground [here](https://developer.mozilla.org/en-US/play?id=HE3r1h9N7XJaFFUKpaBabIMI9bF4He6C797vT%2BQsfvpA1inCXUXTx020QW2LK7y%2FkyJaj%2FBO%2FEZgrbun).
  • Also when setting `dur` to a small value, there's still at least one frame where the group is in an intermediary position.
  • **Is there a way to use `set` or something equivalent to set the group's translation?**
  • I'd like to do this with SVG only since I'm chaining a couple of SMIL animations together: The animation after setting the translation to zero is an [`animateMotion`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion) using an [`mpath`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath).
  • I'm trying to set the [`transform`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform) attribute of a group within an SVG.
  • Specifically, I'd like to set [`translate`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform#translate)'s value to `0 0`.
  • I tried using the [`set`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set) element for this but that didn't have an observable effect:
  • <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  • <style>
  • rect {
  • cursor: pointer;
  • fill: papayawhip;
  • }
  • text {
  • font-size: 1px;
  • font-family: monospace;
  • }
  • </style>
  • <g id="group" transform="translate(1 2)">
  • <rect width="4" height="3"></rect>
  • <text x=0.5 y=1.5>Hello</text>
  • <set
  • attributeName="transform"
  • to="translate(0 0)"
  • begin="group.click"
  • dur="2s"
  • />
  • </g>
  • </svg>
  • MDN Playground [here](https://developer.mozilla.org/en-US/play?id=YWnhJH9C%2F43IQPYXUJBkMLwjZ2A3M7ZCD5zjryarPwXaEdO0QQHQFkg2q34Lc9NTwLhGHsXTFK79wokx).
  • Using [`animateTransform`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform) instead works but doesn't move the group instantaneously, which I'd prefer:
  • <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
  • <style>
  • rect {
  • cursor: pointer;
  • fill: papayawhip;
  • }
  • text {
  • font-size: 1px;
  • font-family: monospace;
  • cursor: pointer;
  • }
  • </style>
  • <g id="group" transform="translate(1 2)">
  • <rect width="4" height="3"></rect>
  • <text x="0.5" y="1.5">Hello</text>
  • <animateTransform
  • attributeName="transform"
  • type="translate"
  • to="0 0"
  • begin="group.click"
  • dur="2s"
  • />
  • </g>
  • </svg>
  • MDN Playground [here](https://developer.mozilla.org/en-US/play?id=HE3r1h9N7XJaFFUKpaBabIMI9bF4He6C797vT%2BQsfvpA1inCXUXTx020QW2LK7y%2FkyJaj%2FBO%2FEZgrbun).
  • Even when setting `dur` to a small value, there's still at least one frame where the group is in an intermediary position.
  • **Is there a way to use `set` or something equivalent to set the group's translation?**
  • I'd like to do this with SVG only since I'm chaining a couple of SMIL animations together: The animation after setting the translation to zero is an [`animateMotion`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion) using an [`mpath`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath).
#1: Initial revision by user avatar Matthias Braun‭ · 2023-10-11T22:46:59Z (7 months ago)
Set transform of SVG element 
I'm trying to set the [`transform`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform) attribute of a group within an SVG.

Specifically, I'd like to set [`translate`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform#translate)'s value to `0 0`.

I tried using the [`set`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set) element for this but that didn't have an observable effect:

    <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
      <style>
        rect {
          cursor: pointer;
          fill: papayawhip;
        }
        text {
          font-size: 1px;
          font-family: monospace;
        }
      </style>

      <g id="group" transform="translate(1 2)">
        <rect width="4" height="3"></rect>
        <text x=0.5 y=1.5>Hello</text>
        <set
          attributeName="transform"
          to="translate(0 0)"
          begin="group.click"
          dur="2s"
        />
      </g>
    </svg>

MDN Playground [here](https://developer.mozilla.org/en-US/play?id=YWnhJH9C%2F43IQPYXUJBkMLwjZ2A3M7ZCD5zjryarPwXaEdO0QQHQFkg2q34Lc9NTwLhGHsXTFK79wokx).

Using [`animateTransform`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform) instead works but doesn't move the group instantenously, which I'd prefer:

    <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
      <style>
        rect {
          cursor: pointer;
          fill: papayawhip;
        }
        text {
          font-size: 1px;
          font-family: monospace;
          cursor: pointer;
        }
      </style>

      <g id="group" transform="translate(1 2)">
        <rect width="4" height="3"></rect>
        <text x="0.5" y="1.5">Hello</text>
        <animateTransform
          attributeName="transform"
          type="translate"
          to="0 0"
          begin="group.click"
          dur="2s"
        />
      </g>
    </svg>

MDN Playground [here](https://developer.mozilla.org/en-US/play?id=HE3r1h9N7XJaFFUKpaBabIMI9bF4He6C797vT%2BQsfvpA1inCXUXTx020QW2LK7y%2FkyJaj%2FBO%2FEZgrbun).

Also when setting `dur` to a small value, there's still at least one frame where the group is in an intermediary position.

**Is there a way to use `set` or something equivalent to set the group's translation?**

I'd like to do this with SVG only since I'm chaining a couple of SMIL animations together: The animation after setting the translation to zero is an [`animateMotion`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion) using an [`mpath`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath).
svg