I would like to display a sequence of images in a timed fashion in beamer i.e. I want to zoom an image from small size to large size. Below is the code I tried and I get some errors while compiling.
\documentclass{beamer}
\usetheme{Copenhagen}
\usecolortheme{whale}
\useinnertheme{rounded}
\usepackage{tikz}
\usepackage{calc}
\usepackage{forloop}
\begin{document}
\newcounter{k}
\forloop{k}{1}{\value{k} < 11}{
\begin{frame}
\transduration{0.1}
\includegraphics[scale=\value{0.01\arabic{k}}]{images/my_image.pdf}
\end{frame}
}
\end{document}


