如何使用 tikz 创建精美的视频播放按钮?

如何使用 tikz 创建精美的视频播放按钮?

我正在为我的学生写一篇关于 latex 的文档,我想用 tikz 或任何其他方法设计一个漂亮的“播放视频”按钮,告诉他们有一个视频可以更详细地解释这个想法。我想把链接放在按钮里。提前谢谢。

答案1

正如 Marijin 上面所说,一种方法是插入图像,然后使用包\href中的命令hyperref链接到视频。在这里,我在图像上创建了一个类似播放的按钮,作为picTikZ 的按钮。这够花哨吗 ^^ 您可以只使用图像,也可以只使用播放按钮。

https://www.overleaf.com/read/whcbtqdqnwrg

在此处输入图片描述

\documentclass{beamer}
\usepackage{tikz}
\usepackage{hyperref}
\title{The Beauty of
Divine Beings Dancing}
\author{Shen Yun}
\date{August 2021}
\begin{document}
\maketitle
\begin{frame}[t]{The Beauty of Shen Yun Performamce}
{\itshape An explosion of color and sound \ldots}

Just click to the following button to play an introducing video on Youtube
\tikzset{Play button/.pic={
\path (0,0) node{\includegraphics[width=5cm]{shenyun.png}};
\draw[blue,line width=2pt,fill=yellow] (-.5,.5)--(-.5,-.5)--(.5,0)--cycle;
}}
\begin{center}
\href{https://www.youtube.com/watch?v=0JwBQxKbzeo}{\tikz\pic{Play button};}    
\end{center}

See more at \href{www.shenyun.com}{\color{magenta} www.shenyun.com}
\end{frame}
\end{document}

相关内容