I am attempting to take an svg path that is morphing in response to the user's mouse movements and expand it into a stable rectangle when the user clicks a button. The current project is here (please note that this is taken from a codrops demo with a few alterations): https://codepen.io/redheadedmandy/pen/RjBKeQ
Assuming that there is a way to call the current coordinates of the SVG, I figured I would do the following on the click of the button:
var currentPoints = ; // insert current path here
var clickMorph = anime({
targets: '.morpho',
d: [
{currentPoints},
{value: ''} // I also need to figure out what the best way to morph it into a retangle is...
],
easing: 'easeOutQuad',
duration: 1500,
loop: false
});
The problem is that I have no idea where the coordinates for the shape's path are at any given time-- as far as I can tell, in order to make that guided morph to a rectangle, anime.js would need the initial coordinates of the path. (I may be totally wrong about that.) If anyone has a suggestion for how to do this, I would be most grateful! (Or if you've noticed that my understanding of anime.js is completely flawed, that would be helpful too.)
In my opinion, - the best practice of mastering JS libraries for SVG animation is - understanding the basics of creating the simplest SVG figures and their manual animation.
Let me show you, on a concrete example, one way how this can be done.
Create an animation of the morphing of a pentagon into a square.
To morph one figure into another, you need two patches with the same number of nodes.
In our case, if a pentagon should have five nodes, then the patch of the square also has five.
Draw the shapes in a vector editor, for example, Inkscape.
We set the horizontal and vertical guides that run through the center of the document and the anchor points. In the figure below, these are blue lines. On them we will navigate when dragging nodes.
In the tool palette, select the polygons
d = "m ..z"
<path d="m200 724.1 124-0.2 0.9 231.3-246.8-1 0.9-230.3z" />
Return to Inkscape, select the tool - edit the contour nodes,
and drag the nodes to make a square
A semicolon separates the path values for a square and a pentagon. With the animation, the path will change from one value to another.
Below is the code that implements the animation of a smooth transformation of one figure into another:
Start animation when clicking on svg
Where,
<animate attributeName="d"
- animation command attribute 'd'begin="svg2.click"
- start animation when clicking on svgdur="6s"
- Animation duration 6 secondsfill="freeze"
- After the animation ends, the figure freezes in its final positionrepeatCount="1"
- Single repetitionrestart="whenNotActive"
- prohibit the animation from restarting until it finishesMore complex example of the same technique
Animation tooltip with notches at the arrow
d
Animating the attribute "d" of the patch is a very powerful and efficient tool that allows you to implement a variety of transformations.
After mastering and understanding the manual method of animating SVG shapes, it is much easier to be utilized libraries JS.