小さく暗くなっていくアニメーションの円を作成する方法

小さく暗くなっていくアニメーションの円を作成する方法

小さくなって色が変わるアニメーションの塗りつぶされた円を作成するにはどうすればよいですか? 私は beamer クラスを使用しています。

答え1

もう一度ビーマーが欲しいと仮定します。

\documentclass{beamer}
\usepackage{tikz}
\usepackage{amsmath}
\newcount\mypar

\begin{document}
\transduration{2}
\animate<2-22>
\begin{frame}[t,fragile]{Frame title}
\animatevalue<2-21>{\mypar}{0}{20}
\centering
\begin{tikzpicture}
 \pgfmathtruncatemacro{\myfrac}{50+50*cos(\mypar*18)}
 \pgfmathsetmacro{\myradius}{3+cos(\mypar*18)}
 \path[use as bounding box] (-4.2,-4.2) rectangle (4.2,4.2);
 \fill[yellow!\myfrac!red] circle[radius=\myradius];
\end{tikzpicture}
\end{frame}
\end{document}

ここに画像の説明を入力してください

プレゼンテーションでアニメーションを表示するには、Acroread で全画面モードで表示します。

関連情報