18 questions
1
vote
0
answers
73
views
SVG morphing text into shapes
I have asked several AIs on how to go about this, I've looked up som many searches but I think it would help if I knew what to look up. Anyways, my problem in the code below is that I have a website ...
-1
votes
1
answer
275
views
SVG path is different after morphing with Animejs
I was trying to morph a clip-path from 1 shape to another using anime.js. The shapes have an identical number of points.
I ran into some issues with the paths not correctly showing. Upon further ...
0
votes
1
answer
96
views
SVG Morphing Quandary
I have two SVGs, I've made completely sure they have exactly the same number of points, and while the bezier curves are not identical, there's the same amount of handles etc. Why oh why are they not ...
2
votes
1
answer
1k
views
How to morph svg into another svg correctly with Anime.js?
I have a problem where two of my svg have the same number of points, but something isn't right when I play the animation, the two svgs are so close together but the animation just jumps out of nowhere ...
1
vote
1
answer
137
views
How do i avoid the mangled svg path in the svg morph transition?
I ahev the following svg created in inkscape
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http:...
1
vote
2
answers
1k
views
SVG morph not morphing smoothly - anime js
I am trying to create a simple SVG morph using Anime JS but the SVG doesn't transition smoothly as you can see below it jumps. Does anyone know why this is happening?
const SVG_PATHS = [
{ ...
0
votes
1
answer
403
views
SVG Morphing animation giving really weird results
anime({
targets: ".a",
d: [
{value: "M0,0,33.32,31.1l89.963,43.315L146.606,0Z"}
],
easing: "easeOutQuad",
duration: ...
1
vote
0
answers
414
views
Smoothly Morph SVG using snap.js
I tried using snap.js to achieve the morphing effect between my two blob shapes. However, the morphing transition is not as sooth as the example that I followed here. I created the shape in ...
1
vote
1
answer
5k
views
SVG path d: I expected ('M' or 'm'), but got "NaN 0,0..100"
I used [skylake] library == svg morphing animation menu and wanted to do the same menu animation(svg morphing animation) like this one : http://jemimahbarnett.com . When your mouse entered the svg ...
1
vote
2
answers
1k
views
SVG smoothly morphing shape into other predefined shapes with Javascript
I want a smooth transition between the shapes (the example below shows a sudden transition just so you get an idea where I need a smooth transition).
The order of the shapes is determined by ...
1
vote
1
answer
692
views
Rotating SVG path points for better morphing
I am using a couple of functions from Snap.SVG, mainly path2curve and the functions around it to build a SVG morph plugin.
I've setup a demo here on Codepen to better illustrate the issue. Basically ...
2
votes
1
answer
2k
views
Javascript - morph/animate svg path data WITHOUT SMIL or libraries
I want to morph/animate svg path data WITHOUT SMIL or libraries (jquery, Snap.svg, Velocity.js etc.), just pure javascript (and optionally with css if possible). I want to do this because Chrome ...
2
votes
2
answers
1k
views
SVG Path and morphing
I have a bit of a theoretical questions.
Lets say i have 2 paths in svg. Each with a different number of points. One has 4 Bézier curves and the other 3.
What i want to do is morph one into the other....
1
vote
1
answer
789
views
SVG - smooth morph Paths into each other
I'm currently searching for a solution to morph two or more paths into each other, to create a smooth pinch2Zoom animation. Currently I'm working with opacity to blend the two path's into each other:
...
4
votes
2
answers
5k
views
How to morph a SVG diamond into a circle
I've recently been dipping my toe into SVGs and I'm currently trying to morph a diamond into a circle when the user hovers over it.
I found this tutorial over at CSS Tricks
I've noticed that they're ...