Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
14 views

I am trying to create a path animation of Svg in the desktop compose app. fun SvgDocument.drawCompletedFills(buildPaths: List<BuildPath>, drawScope: DrawScope, canvas: Canvas, targetLength: ...
Vivek Gupta's user avatar
2 votes
1 answer
90 views

I have an issue with an SVG that shows an ugly default state prior to the anim starting. I had hoped I could set the visibility of the SVG to hidden then check the SVG anim status is playing using js ...
chris.p4p's user avatar
0 votes
1 answer
64 views

I have an SVG map of Africa, and I want to embed a second SVG within it. However, I’m unable to do so due to an overflow issue. I suspect that I might be facing a clipping or masking problem. Since ...
Pavel's user avatar
  • 1
0 votes
1 answer
91 views

I’m trying to recreate the box animation from Flecto.io using GSAP in this CodePen: https://codepen.io/sleepylala/pen/raNWYJy HTML CODE: <body> <div class="about-header"> ...
Sleepylala's user avatar
1 vote
1 answer
72 views

I tried doing a height animation so the bars from my diagram go from 100% height to 30% and then back to 100%. I thought i could just do it with the attribute "height" but apparently not. ...
vikavenable's user avatar
2 votes
1 answer
69 views

I have two charts, the first one plots two functions, predators and prey. Each containing a circle with an animateMotion that goes along the function path. The other chart is a phase curve generated ...
Ignacio Mariotti's user avatar
0 votes
0 answers
126 views

I have an SVG file with multiple, sequential animations (1. an arrow appears from left to right; 2. a tirangle grows while changing color; 3. the triangle now shrinks). I want to include the animated ...
terauser's user avatar
0 votes
2 answers
70 views

Given the following example: <svg xmlns="http://www.w3.org/2000/svg"> <defs> <rect id="rectangle" fill="red" width="25" height="25"> <animate ...
Pedro Henrique's user avatar
0 votes
1 answer
61 views

I am trying to increase the thickness of this spinning SVG circle. I don't know if it's stroke height or something. I've tried all I can but seems the SVG editor in site doesn't include the option to ...
Jake Shaw's user avatar
0 votes
1 answer
72 views

I want to make an animated svg logo using css animation with keyframes. The animation works well, but I can not find a way to properly time the keyframes. I want to achieve the below timeline: step 1:...
ucsendre's user avatar
1 vote
2 answers
143 views

I'm trying to make an object in an animated SVG image move in a perfect sine motion in one axis (up and down or left and right). For instance: x(t) = a + b * sin(t * 2PI*f) (I'm also trying to animate ...
elechris's user avatar
  • 718
1 vote
1 answer
145 views

I trying to create a mouse trail using svg path elements. used beziers for smoothening but somehow smoothening is not good. can some one help me with this. const smoothing = 0.10; function line(...
gowtham manikandan's user avatar
2 votes
1 answer
348 views

I have been trying to recreate this progress bar, but I have been stuck to the step where I can implement the dashes between the line. If you have any ideas it would be great. This is what i have ...
Dragoș Axinte's user avatar
0 votes
0 answers
17 views

I want to set the animatable objects one by one with a certain gap on a specific path before they start moving, like the visual effect in the following picture. I tried to Google it, but I failed. I ...
personax's user avatar
  • 145
0 votes
1 answer
84 views

I have the following code (in TypeScript) that creates a polyline (based on 4 differents points x1y1, xCy1, xCy1, x2y2, where Xc is the half distance between x1 and x2 on a plane), so it is not a ...
Robert Rachita's user avatar
1 vote
1 answer
549 views

I didn't found any efficient solution right now, I'm able to do it with puppeteer and FFmpeg but it takes time and also did not get the resolution that I wanted. currently, this approach launches svg ...
Yagnik Vadaliya's user avatar
0 votes
1 answer
78 views

Sample SVG: <svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"> <linearGradient id="reuseme" gradientUnits="userSpaceOnUse" spreadMethod="reflect"> <stop offset="0"...
jamieburchell's user avatar
0 votes
1 answer
91 views

How can I change this SVG so that the gradient cycles from top to bottom continuously such that when the red is dropping off the bottom, it is appearing from the top and when the blue is dropping off ...
jamieburchell's user avatar
1 vote
1 answer
1k views

I've got a simple animated SVG that works great in Chrome/Firefox but it doesn't animate at all in Safari. I understand this is due to SVG 1.1 vs. 2.0 (Safari doesn't yet support 2.0) , and that ...
pbspry's user avatar
  • 127
-1 votes
1 answer
60 views

I have a div with several SVG's textPaths that are overlapped with a position absolute. The problem is that I can hover and click in all of them in Google Chrome, but not in Safari (the ...
a.tr.a.tr.a.tr's user avatar
0 votes
2 answers
94 views

I want to make a trinity knot infinite animation loop right now I am stuck with an infinite loop animation I just want to add one knot on top so the logo looks like a trinity knot. I am a beginner on ...
Abnet Hussien's user avatar
0 votes
1 answer
58 views

I have an svg code in my index.html file but it doesnt appear on Safari. I tryed differend solutions those are not working for me <svg class="blob" viewBox="0 0 500 500" xmlns="http://www.w3....
Dzserold's user avatar
1 vote
2 answers
251 views

I'm trying to create the below SVG animation with a mask. I have tried with CSS stroke properties, but I cannot get it the way I want. Here is the W-shaped SVG I have created. path { stroke: ...
Eshan Rajapakshe's user avatar
1 vote
0 answers
522 views

I am trying to animate a svg path to disappear on click. The animation works, but at the end of the animation a dot is left behind. Here is my code export default function App() { const [...
Prabhat Pal's user avatar
0 votes
0 answers
30 views

Trying to develop some SVG icons as procedurally as possible, thought I'd start with something simple: a fading ellipsis. Got as far as defining and cloning a comprising a circle with animated ...
Andrew's user avatar
  • 11

1
2 3 4 5
15