slideshow-2

html, body {
  margin: 0;
  padding: 0;
}

.pic-ctn {
  width: 100vw;
  height: 100px;
}

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}

.pic-ctn {
  position: relative;
  width: 80vw;
  height: 100px;
  margin-top: 0vh;
}

.pic-ctn > img {
  position: absolute;
  margin: 0px -500px;
  top: 0;
  left: calc(0% -0px);
  opacity: 0;
/*totale 'looptijd' fotoanimatie*/
  animation: display 50s infinite;
}

/*tijd tot volgende foto (2-5)*/
img:nth-child(2) {
  animation-delay: 10s;
}
img:nth-child(3) {
  animation-delay: 20s;
}
img:nth-child(4) {
  animation-delay: 30s;
}
img:nth-child(5) {
  animation-delay: 40s;
}
