<!DOCTYPE html>
<html>
<head>
<style>
div {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
    -webkit-animation: mymove 3s;  /* Chrome, Safari, Opera */
    -webkit-animation-iteration-count: 3;  /* Chrome, Safari, Opera */
    animation: mymove 3s;
    animation-iteration-count: 3;
}


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

    to {top: 200px;}
}

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

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

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

</body>
</html>