i have a little issue with the css animation and keyframe feature...
i have a little monster with blinking eyes... the eyes should blink just 0.1s
And then i want to have a duration... and then the animation should loop. This is my animation/keyframe:
@keyframes blinkingEyes {
  0% {
    transform: rotateX(0deg);    
  }
  36% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(90deg);
  }
}
And this is my animation property:
animation: blinkingEyes 0.15s 1s infinite linear;
I found a workaround with a x% between my start and end value. But nothing works for me.. i hope you could help me
 
    