글자가 순서대로 하나씩 올라갔다가 내려오는 (UP & Down) CSS Animation // animation 적용 .title span { position: relative; animation: animeTextUp 2s infinite; } // 글자 하나씩 tag로 묶여서 delay 적용 .title span:nth-of-type(1) { animation-delay: .1s; } .title span:nth-of-type(2) { animation-delay: .2s; } .title span:nth-of-type(3) { animation-delay: .3s; } .title span:nth-of-type(4) { animation-delay: .4s; } .title span:nth-of-t..