Animation using Keyframes in CSS

  • Post category:CSS

Get the code of Animation using Keyframes 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.

<h3>animation</h3>
<div></div>
div {
  background: red;
  width: 50px;
  height: 50px;
  position: relative;
  animation: mymove 5s infinite;
}
@keyframes mymove {
  from {left: 0px;}
  to {left: 150px;}
}