If I understood your problem correctly. Here is the solution http://jsfiddle.net/xpvt214o/924105/
try this css
.flip {
animation: animate 4s ease-in-out;
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
}
@keyframes animate{
0%{
transform: rotate(0deg)
}
100%{
transform: rotate(180deg)
}
}
Also in your above code the argument 'e' does not have any functionality. So, removing the argument won't have any effect.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…