In general, blurring is an expensive operation, so animating it is probably not the most efficient thing you can do 😄 You could try using Modifier.graphicsLayer and setting a render effect to use blur, and only apply the modifier to the content below. This only works on 31+ though
If you progressively change the blur radius as the animation it should progressively blur the content, but like i said - very expensive operation to do.