css keyframe
by freemaster
HTML
<p>텍스트입니다.</p>
CSS
p {
animation-duration: 3s;
animation-name: index;
}
@keyframes index {
from {opacity:0; }
to {opacity:1;}
}
by freemaster
<p>텍스트입니다.</p>
p {
animation-duration: 3s;
animation-name: index;
}
@keyframes index {
from {opacity:0; }
to {opacity:1;}
}