CSS-Animation

-webkit-animation: mymove 5s; animation: mymove 5s; with keyframes

by JSDavi

HTML

<p><strong>Note:</strong> The animation property is not supported in Internet Explorer 9 and earlier versions.</p>
<div></div>

CSS

div {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
    left: 200px;
    -webkit-animation: mymove 5s; /* Chrome, Safari, Opera */
    animation: mymove 5s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}

@keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}