読み込み中
<style>
i{
animation: wave-letters 1s infinite;
display: inline-block
}
@keyframes wave-letters
{
0%, 100%
{
transform: translate(0)
}
50%
{
transform:translateY(-1em)
}
}
i:nth-child(2)
{
animation-delay: .1s
}
i:nth-child(3)
{
animation-delay: .2s
}
i:nth-child(4)
{
animation-delay: .3s
}
i:nth-child(5)
{
animation-delay: .4s
}
</style>
<i>読</i><i>み</i><i>込</i><i>み</i><i>中</i>