Default behavior of Beamer for covered elements is to make them invisible. You can change this to making them transparent by
\documentclass{beamer}
\usepackage{lipsum}
\setbeamercovered{transparent}
% desired command to blur instead
\begin{document}
\begin{frame}
\pause
\lipsum[1]
\end{frame}
\end{document}
However, I regularly have questions whose answer is covered and appears in the next overlay. People in the audience can then still see enough of the answer. I don't want to make covered elements invisible, because it helps me as a presenter to have an indication of how much more material there is on the slide. The degree of transparency can be controlled, but I don't think there is a level that solves my problem.
Hence my desire to blur covered elements. Is there a way to accomplish this in Beamer (easily)?
This question is about blurring words: How to blur a single word?, but I don't see how to use that in Beamer as an option to \setbeamercovered. Another blurring technique for text is discussed in this question: Blur the text so it's not readable, but again I don't know how to use it in Beamer.
