
css로 애니메이션 주기 위 사이트처럼 다른 사람이 만들어둔걸
그대로 갖고와서 사용중인데요
animate__fadeInLeft
인 경우 너무 왼쪽 끝에서 슉하고 나와서
처음 페이드인이 시작되는 위치를 수정하고 싶은데
css 부분에 뭐라고 덧붙이면 될까요?ㅜㅜ
.animate__fadeInLeft {
animation-duration:3s;
color: aliceblue;
margin: 100px 0px 0px -150px;
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
<style> 안의 페이드인레프트 css 부분입니다
속도는 animation-duration:3s; 를 써서 느리게 진행되도록 수정했는데
애니메이션 시작 위치를 수정하려면 뭘 추가해야할까요??
