Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
div {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
    -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
    -webkit-animation-delay: -2s; /* Chrome, Safari, Opera */
    animation: mymove 5s infinite;
    animation-delay: -2s;
}


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

    to {left: 200px;}
}

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

    to {left: 200px;}
}
</style>
</head>
<body>

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

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy