如何使动画圆圈变得越来越小并且越来越暗

如何使动画圆圈变得越来越小并且越来越暗

如何制作一个动画填充圆,使其变小并改变其颜色?我正在使用 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 在全屏模式下查看它。

相关内容