Is there any way to set the from or to of a webkit-keyframe with JavaScript?
|
|
A solution of sorts:
Just adds a style definition to the header. Would be much cleaner/better to define it though the DOM if possible. Edit: Error in Chrome with old method |
||||
|
|
|
The way I handle this is to not set either the from or to of the element style I am manipulating in the css file and before triggering the animation I will set the element style that it should go to with javascript. This way you are free to dynamically manage what stuff should do until we can manage this directly in js. You only need to specify one of the two. The setTimeout allows the application of the css rule to the element before the animation is triggered otherwise you would have a race condition and it wouldn't animate.
|
|||
|
|
|
To solve this I added a 'webkit animation name' to my CSS selector and then created separate rules for my options, in my example red and yellow colouring:
Then using jQuery:
|
|||||
|
|
You can use the CSS DOM interface. For instance:
|
|||
|
|