Animation Direction in CSS

  • Post category:CSS

Get the code of Animation Direction in CSS and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<div></div>
div {
  background: dodgerblue;
  width: 50px;
  height: 50px;
  position: relative;
  animation: ramzan 1s infinite;
  animation-direction: alternate;
}
@keyframes ramzan {
  from {left: 0px;}
  to {left: 100px;}
}