Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

got an simple animation with keyframes.

    @-webkit-keyframes rotation {
    0%   { -webkit-transform: rotate(10deg); }
    25%  { -webkit-transform: rotate(5deg); }
    50%  { -webkit-transform: rotate(10deg); }
    75%   { -webkit-transform: rotate(5deg); }
    100% { -webkit-transform: rotate(10deg); }

}

and

.class { -webkit-animation: rotation 1s infinite; }

Is it possible to add a pause between this keyframe animation? Like 5 seconds? I know there is a -webkit-animation-delay but this delays only the start of the animation.

P.S. I know its only the webkit prefix... at the end I get it through prefixr.

share|improve this question
Check out this tutorial it has demos and goes over each style and class leemunroe.com/css3-animations – Anagio Jul 27 '12 at 14:35
why not just remove .class ? (if the class is only the animation) – Tom Roggero Jul 27 '12 at 15:37
1  
@denny_mueller I was thinking of the same solution as your edit. Why don't you provide that as your own answer and mark it accepted? – Anson Nov 21 '12 at 20:21

migrated from webmasters.stackexchange.com Jul 27 '12 at 14:23

1 Answer

up vote 0 down vote accepted

Got an workaround, but looks bit dirty

@-webkit-keyframes rotation {
        0%   { -webkit-transform: rotate(10deg); }
        5%  { -webkit-transform: rotate(5deg); }
        10%  { -webkit-transform: rotate(10deg); }
        15%   { -webkit-transform: rotate(5deg); }
        20% { -webkit-transform: rotate(10deg); }
        100% { -webkit-transform: rotate(10deg); }

    }
.class { -webkit-animation: rotation 5s infinite; }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.