body {
 background: #EEE1BE;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
li {
  position: absolute;
  left: 50%;
  margin-left: -247px;
  margin-top: 3%;
}
img{
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 hsla(0,0%,30%, .3);
  }


li:nth-child(10) {
  animation: xfade 90s 0s infinite;
}

li:nth-child(9) {
  animation: xfade 90s 8s infinite;
}

li:nth-child(8) {
  animation: xfade 90s 16s infinite;
}
li:nth-child(7) {
  animation: xfade 90s 24s infinite;
}
li:nth-child(6) {
  animation: xfade 90s 32s infinite;
}
li:nth-child(5) {
  animation: xfade 90s 40s infinite;
}
li:nth-child(4) {
  animation: xfade 90s 48s infinite;
}
li:nth-child(3) {
  animation: xfade 90s 56s infinite;
}
li:nth-child(2) {
  animation: xfade 90s 64s infinite;
}
li:nth-child(1) {
  animation: xfade 90s 72s infinite;
}
@keyframes xfade{
  17% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
}