Suppose I have a slide defined as follows:
\begin{frame}[t,fragile]{Some Slide}
\begin{itemize}
\item An item
\item Another item
\end{itemize}
\pause
\begin{center}
\begin{tikzpicture}[overlay]
\transdissolve
\transduration{2}
\node[yshift=78] (img2) {\includegraphics[scale=0.25]{someimage.png}};
\end{tikzpicture}
\end{center}
\end{frame}
Now I want only the image to be show with a transition. In the above code, with the transition command added inside the tikzpicture environment, the complete slide as well as image are drawn with a transition. How do I restrict the transition to the image only?