CSS Transitions: Difference between revisions

m
(→‎Under-specified Behavior: add information about what happens to element.style.foo during a transition)
Line 39: Line 39:
* ''What happens to the underlying Style during a transition?''
* ''What happens to the underlying Style during a transition?''
** The specification requires that the computed style should return the intermediate transitioning values, but doesn't specify what value should be returned for the element.style.foo property during a transition
** The specification requires that the computed style should return the intermediate transitioning values, but doesn't specify what value should be returned for the element.style.foo property during a transition
** Testing on webkit reveals that this value is updated to the final value immediately, but it is masked by the animated value until the animation ends.  It does not animated.
** Testing on webkit reveals that this value is updated to the final value immediately, but it is masked by the animated value until the animation ends.  It is not animated.
* ''How do you deal with subproperties that have different numbers of values?''
* ''How do you deal with subproperties that have different numbers of values?''
** If the sub-properties are specified separately but there are unequal values specified, they should be handled in the same way that [http://www.w3.org/TR/css3-background/#layering Multiple Backgrounds] are handled in CSS3
** If the sub-properties are specified separately but there are unequal values specified, they should be handled in the same way that [http://www.w3.org/TR/css3-background/#layering Multiple Backgrounds] are handled in CSS3
14

edits