I am learning how to encode / create SVG and currently work with progress bar. The concept is simple; circle moving in a circle.
However, I would like to make the movement more realistic by adding blur to the moving circle (essentially creating a blurry tail). I searched and found that you can blur the movement in the x or y direction, but this will not produce the desired effect, as my circle constantly switches between x and y. I also tried to fake it by adding lower opacity, gradually reducing the circles at the back of my circle, but it looks pretty bad if the image is large. I know that instead I could make a path instead of a circle with a fill gradient that simulates blur, but I'm curious what is the best / standard way to achieve this motion blur effect?
source
share