[Webkit-unassigned] [Bug 50279] Allow transition-delay to affect non-animatable properties

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Dec 1 11:00:33 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=50279





--- Comment #1 from Chris Marrin <cmarrin at apple.com>  2010-12-01 11:00:33 PST ---
So, if you want an image to change after a period of time the logical thing to do would be to go:

transition-property: background-image;
transition-delay: 2s

But this won't work since you need a transition-duration. Seems like the better model would be to use a step function and set the transition up like any other property. Then all non-animatable properties would always use a step timing-function, either implicit or explicit. Then you'd set it up like this:

transition-property: background-image;
transition-duration: 2s;
transition-timing-function: step-end;

(I don't remember the step function syntax, but you get the idea).

I think this makes more sense and I think it would be easier to integrate this with other transitions.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list