hbwoodrose
8/10/2017 - 8:24 PM

Animated Gradient

Animated Gradient

.gradient-animated {
  background: linear-gradient(223deg, #5e51f5, #ff00ff);
  background-size: 400% 400%;

  animation: GradientAnim 20s ease infinite;
}

@keyframes GradientAnim {
  0% {
    background-position: 0% 94%;
  }
  50% {
    background-position: 100% 7%;
  }
  100% {
    background-position: 0% 94%;
  }
}