Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is a test I created to show my situation

http://jsfiddle.net/2vN2S/

/* Setting up the "myAnim1" for all browser types
-------------------------------------------------*/
 @keyframes myAnim1 {
    0% {
        background-color: #212121;
    }
    50% {
        background-color: #31f4dc;
    }
    100% {
        background-color: #212121;
    }
}
/* Firefox */
 @-moz-keyframes myAnim1 {
    0% {
        background-color: #212121;
    }
    50% {
        background-color: #31f4dc;
    }
    100% {
        background-color: #212121;
    }
}
/* Safari and Chrome */
 @-webkit-keyframes myAnim1 {
    0% {
        background-color: #212121;
    }
    50% {
        background-color: #31f4dc;
    }
    100% {
        background-color: #212121;
    }
}
/* Opera */
 @-o-keyframes myAnim1 {
    0% {
        background-color: #212121;
    }
    50% {
        background-color: #31f4dc;
    }
    100% {
        background-color: #212121;
    }
}
/* Attaching the animations to the elements
Notice the difference between timing!!
-------------------------------------------------*/

body {
    display:inline-block;

    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;

    animation:myAnim1  5s steps(2, end);
    -moz-animation:myAnim1 5s steps(2, end) infinite;
    -webkit-animation:myAnim1 5s steps(2, end) infinite;
}

As you can see, I've set up a stepped animation, and a transition for the body background. What I expected was the transition to create the 0.3 second "smoothness" (easing) between each step of the animation, however, it looks like the animation takes the whole control of the background color.

Is there any way to create something like that in an easy way?

share|improve this question
1  
are you wanting a defined amount of time for each background color to show? Or just a smooth transition between the background colors? – Memphis McKay Jan 26 at 15:06
In my eample, defined amount of time to show. I want smooth transitions between those steps. Actually what I "exactly" want is to find a way to use the transitions and animations together (if there is a logical way to do this). – Zettam Jan 26 at 15:21

1 Answer

Increasing the number of steps works steps(36,end)

Working fiddle http://jsfiddle.net/DeepakKamat/y2vWp/4/

share|improve this answer
Here is what I did jsfiddle.net/y2vWp Looks like it still doesn't work.. – Zettam Jan 26 at 14:58
Sorry for the last answer, check the update. – Deepak Kamat Jan 26 at 14:59
1  
Hey, thank you for the edit. However you've completely removed the steps.. And this means, the "smooth transition effect" is not caused by the transitions, but the animation itself. Please correct me if I'm wrong – Zettam Jan 26 at 15:06
1  
Ohh, yeah. But if you want the steps to do the transition then why are you using CSS transition ? – Deepak Kamat Jan 26 at 15:10
Try increasing the steps, maybe steps(26, end) – Deepak Kamat Jan 26 at 15:14
show 1 more comment

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.