http://css3.bradshawenterprises.com/cfimg/


위 링크에 있는 

Demo with multiple images

이것좀 써보고싶은데 

이미지 이름을 어디에 정의해야 하는지 잘모르겠어요

@keyframes cf4FadeInOut {
  0% {
    opacity:1;
  }
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

#cf4a img:nth-of-type(1) {
  animation-delay: 6s;
}
#cf4a img:nth-of-type(2) {
  animation-delay: 4s;
}
#cf4a img:nth-of-type(3) {
  animation-delay: 2s;
}
#cf4a img:nth-of-type(4) {
  animation-delay: 0;
}


여기서 어디에 이미지 이름을 정의해야하는거죠?