Answers for "css slide up down animation keyframes"

CSS
2

slide up and down animation css

.my-div{
  background-color: #f00;
  animation: animationname 2s linear infinite;
  /*animation: animation-name animation-duration animation-direction animation-iteration-count */  
  transition: .5s ease-in-out;
}
@keyframes animationname{
  0%{
    transform: translateX(10px);
  }
  100%{
    transform: translateX(-10px);
  }
Posted by: Guest on June-17-2021

Code answers related to "css slide up down animation keyframes"

Browse Popular Code Answers by Language