Dear Polymer Devs,
I was wondering if someone could lend me a quick-hand in web animations.
I'm trying to animate two properties at the same time ( opacity and left ), have the animation not reset after it is done, and, if possible, not have a starting keyframe, just ending the animation once these properties have been met.
Something similar to the following css animation:
@keyframes{
to{
opacity:0;
left:1024px;
}
}
How can I achieve something like this with Web Animations and the Web Animations Polyfill for now?
I want to animate only to a value / keyframe containing 2 properties and not have the animation reset once it is done.
Thanks in Advance,
Irfan