floating animation css

PHOTO EMBED

Mon Feb 13 2023 11:27:08 GMT+0000 (Coordinated Universal Time)

Saved by @hamzahanif192

animation: float 6s ease-in-out infinite;

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
content_copyCOPY