我想为Xaringan演示文稿中的幻灯片中的一些元素制作动画。
我知道如何为下面的链接(https://www.garrickadenbuie.com/blog/animate-xaringan-slide-transitions/)中指定的幻灯片过渡设置动画。
我真正想要的是在幻灯片的文本或图像中使用此类动画的可能性。
查看animate.css文件时,我可以看到一些类,例如:.pulse { -webkit-animation-name: pulse; animation-name: pulse;}
但是,当我尝试在RMardown中像这样使用时:.pulse[Some text]
什么都没发生。
我希望能找到一种理想的解决方案,使我能够选择所有可能的动画(https://daneden.github.io/animate.css/)。
最佳答案
如果执行.pulse[Some text]
,它将转换为<span class="pulse">Some text</span>
。在此处制作动画的几件事:
您需要添加类animated
改为div
。您可以通过在新行中开始]
来实现。
因此,这应该可以工作(假设您已包含animate.css
):
.pulse.animated[Some text
]
关于css - 动画Xaringan人物和文字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56432056/