css keyframe

by freemaster

HTML

<p>텍스트입니다.</p>

CSS

p {
  animation-duration: 3s;
  animation-name: index;
}

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