Is it possible use beamer-like overlays in Bookdown?
I want similar like \only<...> and \visible<...> in Beamer, for example (MWE):
\documentclass{beamer}
\begin{document}
\begin{frame}
First
\visible<2->{second}
\visible<3->{third}
{\only<1>{\color{red}} First}
{\only<2>{\color{red}} \visible<2->{second}}
{\only<3>{\color{red}} \visible<3->{third}}
\end{frame}
\end{document}
My target is create an online HTML-presentation (ioslides, slidy or any other, it's unimportant) and a downloadable PDF from same source. These presentations will be educational presentations (maths) which shows step-by-step solution of some exercise (calculation and explanation at once).
How can I do this simply?