[Tex/LaTex] How to pause figures in beamer

beamergraphicspause

I would to \pause two different images (as I can to do with text). This is the ideal code:

\documentclass{beamer}

\usetheme{Copenhagen}
\setbeamercovered{dynamic}

\begin{document}

\begin{frame}
\centering
\includegraphics{gfx/img1} \\
\pause
\includegraphics{gfx/img2}
\end{frame}

\end{document}

What is the real code?

I see both the images on each pause.

Edit: I would to preserve the absolute position of the images and the dynamic behaviour.

Best Answer

You can also use

\visible<1>{content}

in order to have content only visible on slide 1, but reserve space for it on the other slides. This may help you with your positioning problem.