As far as I understand, there is no such thing we can implement using css transitions, but we can not to implement using css animations, but not vice versa.

That is, any transition has a css animation equivalent. For example, this one

.ablock:hover {                                                   
  position: relative;                                             
  -moz-transition-property: background-color, color;              
  -moz-transition-duration: 1s;                                   
  -webkit-transition-property: background-color, color;           
  -webkit-transition-duration: 1s;                                                             
  color: red;                                                     
  background-color:pink;                                          
}

is an equivalent of following:

.ablock:hover {
    -moz-animation-duration:1s;                                   
    -moz-animation-name:transition;                               
    -webkit-animation-duration:1s;                                
    -webkit-animation-name:transition;                            
}       

@-moz-keyframes transition {                                      
    to {                                                          
        color: red;                                               
        background-color: pink;                                   
    }
}       

@-webkit-keyframes transition {                                   
    to {                                                          
        color: red;                                               
        background-color: pink;                                   
    }
}

My question is - if we a talking about browser supporting both css transitions and animations, what are use cases for choosing one or another approach? As for transitions, I can name only one - they have more succinct syntax, we don't have to copy paste huge chucks of code for @-moz-keyframes, @-webkit-keyframes and so on.

As for control from javascript, flexibility and complexity animations are much more appropriate tool (at least, at first glance). So, what are use cases?

UPD: OK, let me try to list interesting info found in questions.

  • This one is contributed by Roman Komarov. Say, we have a div and child div. While parent div is hovered, we are transitioning the child element. Once we are taking away the mouse, transition is cancelled. Duration of this cancellation is exactly the time we've already spend for transitioning. Animation is cancelled "immediately". I don't know, nevertheless, how standard are those two behaviours.
link|improve this question

54% accept rate
In chrome these examples are not equivalent - in the case of your first example it changes to pink on hover and then stays there (until you move the mouse off), whereas in the second it changes to pink, and than switches back to the default when it's finished: jsfiddle.net/nKw3X/1. Also, how easy is it to do transition timing functions, like "ease-in-out", in animations? the-art-of-web.com/css/timing-function – Robin Winslow Aug 15 '11 at 17:34
I tried to work out how to make the color transition back when you move your mouse off an element, but I couldn't get it to work: jsfiddle.net/nKw3X/2. Maybe that's not possible? So that would be a major difference - along with the inability to persist the transitioned value. – Robin Winslow Aug 15 '11 at 17:52
feedback

1 Answer

  • Animations can be looped (and there can be keyframes, yeeah).
  • Transitions can be more flexible and you can easily make transitions to different values and in different circumstances.

While you can emulate some transitions by animations (like you mentioned in your post), the transitions are just more powerful:

  • You just tell which properties you must animate and in which conditions (using the different selectors)
  • You can trigger the transition in different ways:
    1. Changing properties in CSS for pseudo-classed :hover, :active etc. (Creating pure CSS UI)
    2. Changing properties in different classes for different purposes.
    3. Changing properties in inline styles: in conjunction with JS it's just more powerful than animations.
link|improve this answer
Roman, thank you for this answer, but I don't get the main idea, to be honest. Can you provide me an example of css transition we cannot implement via css animation? – shabunc Aug 9 '11 at 9:02
@shabunc You can implement any single transition by animation, but as I know you can't change it (or can't do this easily) while it's running. – kizu Aug 9 '11 at 9:08
@shabunc Also, in many cases the transitions are just so much easier to do: look at this example — there you change only one property (left or top), and the transition just works, but if you'd try to do this with animations… You'd have to make one for every possible transition of the slider. – kizu Aug 9 '11 at 9:12
Roman, I'm giving this bounty to you. But it sad that community doesn't really appreciate such questions. – shabunc Aug 18 '11 at 9:55
I appreciate the question and the response. – Mauvis Ledford Oct 25 '11 at 19:33
feedback

Your Answer

 
or
required, but never shown

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