The animation property is a shorthand property for eight of the animation properties:Note: Always specify the animation-duration property, otherwise the duration is 0, and will never be played.
animation: name duration timing-function delay iteration-count direction fill-mode play-state;
div { -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */ animation: mymove 5s infinite; }