.rotation-y {
    animation-name: rotation-y;
    animation-duration: 1s;
    animation-iteration-count: infinite;    
}

/* Standard syntax */
@keyframes rotation-y {
    0%   { transform: none; }
    50%  { transform: rotateY(90deg); }
    100% { transform: rotateY(180deg); }
}