【发布时间】:2020-08-13 14:47:28
【问题描述】:
我知道单独使用 CSS 创建文本显示动画很简单,但我需要使用 animejs 来创建此动画。
我需要创建这样的东西:text reveal animation demo in css。
这是我目前所拥有的 HTML
<div class="text-box">
<span class="my-text">2020 is a horror movie</span>
</div>
js
anime.timeline({loop: true})
.add({
targets: ".text-box .my-text",
translateY: [-100,0],
easing: "easeOutExpo",
duration: 1400,
delay: (el, i) => 30 * i
}).add({
targets: ".content-box",
opacity: 1,
duration: 1000,
easing: "easeOutExpo",
delay: 1000
});
我需要做什么才能让它工作?
【问题讨论】:
标签: javascript html css anime.js