I have a beamer slide whose code looks similar to the one below:
\documentclass{beamer}
\begin{document}
\begin{frame}{My title}
\begin{table}[]
\begin{tabular}{lll}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{tabular}
\end{table}
\end{frame}
\end{document}
I would now like to gradually highlight certain cells of my table in a certain color (e.g. green).
For example, the cell with value 1 would be highlighted in green first. After that, the cell with value 2 would be highlighted, etc...
How would I go about that? Thank you very much.
