학습 내용 정리/css

CSS fade in animation

verdantjuly 2023. 6. 18. 05:02
728x90

 

[예시]
글자가 서서히 나타납니다.

 

.text {
	animation: fadein 3s;
}

@keyframes fadein {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

 

참고 자료 : https://raidho.tistory.com/110