Hh

body {
   animation: scroll 45s linear;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

Comments

Popular posts from this blog