- From: Simon Fraser <smfr@me.com>
- Date: Tue, 06 Apr 2010 08:59:13 -0700
- To: Brad Kemper <brad.kemper@gmail.com>
- Cc: "Tab Atkins Jr." <jackalmage@gmail.com>, Chris Marrin <cmarrin@apple.com>, "www-style@w3.org list" <www-style@w3.org>
On Apr 5, 2010, at 11:07 PM, Brad Kemper wrote: > transition: left 1s play(bounce 1s infinite); There's a problem linking animations with transitions that hasn't been mentioned yet. What do you expect to happen in this case: .button { left: 100px; transition: left 1s play(bounce 1s); } .button:hover { left: 100px; } Here, left isn't changing on :hover, so the transition wouldn't run, and thus nor would the bounce animation. Is that what you want? Controllable animations are still desired for this use case. Simon
Received on Tuesday, 6 April 2010 15:59:49 UTC