[css-animations] How animation-timing-function in keyframe rule interacts with direction

We should resolve the issue raised by dbaron [1] (Bug 14805 [2])

If we have:

	@keyframes timings {
		25% { animation-timing-function: linear; }
		40% { animation-timing-function: ease-out; }	
	}

..then when the animation moves forward we expect linear to apply between 25% and 40%. But if the animation is moving backward e.g. due to an animation-direction: alternate then we also want linear to apply between 40% and 25%. 

Objections?


[1] http://lists.w3.org/Archives/Public/www-style/2011Mar/0744.html
[2] https://www.w3.org/Bugs/Public/show_bug.cgi?id=14805

Received on Thursday, 16 October 2014 21:48:27 UTC