我正在尝试制作类似于https://www.plasticbcn.com/这个网站的动画。但是我尝试在vue上和gsap上创建它。我有一个包含单词列表的数组和一个将单个单词逐个字符附加到DOM的方法。但是,我无法为每个角色的进入设置动画。我尝试了transition-group,但是它不适用于jshooks。 这是模板代码
<template>
<div>
<div class="typetext">
<div class="typetext__content">
<div class="words">
<span class="letter" v-for="(letter, index) in wordToRender" :key="index">{{letter}}</span>
</div>
</div>
</div>
</div>
</template>