ie10 animation

HTML

<div></div>

CSS

div{height:200px;width:200px;background:red;
animation:go 1s ease infinite;
}
@keyframes go{
    from{margin-left:0;background-color:red;}
25%{margin-left:50px;background-color:blue;}
50%{margin-top:50px;margin-left:50px;}
75%{margin-left:0;margin-top:50px;}
to{margin-top:0;}
}