I am tying to set different transform duration or delay of core-animated-pages for some specific animations, my code looks like this:
<core-animated-pages transitions="scale-up">
<section id="first">
<div scale-up>I should have a delay of .5s</div>
<div scale-up>I should have a delay of 1s</div>
</section>
<section id="second" layout horizontal>
...
</section>
</core-animated-pages>
As far as I looked, there is no way to do that. I can set the delay with CoreStyle.g.transitions.scaleDelay. This would modify the delay but both animations would have the same value.
Another option would be to create a custom-scale-up.html file defining my own values.
Is there any other way. Something simple and declarative would be nice: <div scale-up scale-up-delay=".5s"></div>
Thank you