I want to display the following table with some animation.
Like when i transitioning from one row to the next, I want the row color to change so that a hovering effect is created. Only the selected row will be colored at a time.
Also how do I position the table at a particular coordinate point on the slide?
\documentclass{beamer}
\usepackage{color, colortbl}
\definecolor{background}{rgb}{0.84,0.92,0.95}
\begin{document}
\begin{frame}
\setbeamercovered{dynamic}
\begin{tabular}{|c|c|c|c|}
\hline
J & K & $Q_{n}$ & $\overline{Q_{n}}$ \\
\hline
\onslide<1> {\rowcolor{background}}
\onslide<1->{0} & \onslide<1->{0} & \onslide<1->{0} & \onslide<1->{0} \\
\hline
\onslide<2> {\rowcolor{background}}
\onslide<2->{0} & \onslide<2->{1} & \onslide<2->{0} & \onslide<2->{0} \\
\hline
\onslide<3> {\rowcolor{background}}
\onslide<3->{1} & \onslide<3->{0} & \onslide<3->{0} & \onslide<3->{0} \\
\hline
\onslide<4> {\rowcolor{background}}
\onslide<4->{1} & \onslide<4->{1} & \onslide<4->{0} & \onslide<4->{0} \\
\hline
\end{tabular}
\end{frame}
\end{document}
\usepackage{color}with beamer – samcarter_is_at_topanswers.xyz Jul 12 '18 at 11:17