I'm learning how to code/create SVG's and currently working on a loading indicator. The concept is simple; a circle, moving around in a circle.
However, I'd like to make the motion look more realistic by adding a blur to the moving circle (essentially creating a blurred tail). I've searched and found that you can motion blur in the x or y direction, but that wouldn't achieve the desired effect since my circle is constantly switching between x and y. I've also tried to fake it by adding lower opacity, progressively smaller circles to the back of my circle but that looks pretty bad if the image is large. I know I could instead make a path instead of a circle with a fill gradient that mimics the blur but I'm curious, what is the best/standard way to achieve this motion blur effect?