-
1. Re: How can i change element's properties at specific time position?
Aubrey Scarza Sep 16, 2014 1:24 AM (in response to watergl)You can do it with css on a trigger at the labels on the timeline.
For example
sym.$("Ellipse").css({'top':209, 'left':251, 'height':27, 'width':27});
-
2. Re: How can i change element's properties at specific time position?
watergl Sep 16, 2014 2:25 AM (in response to Aubrey Scarza)I known your solution, but i need to change it on trigger 'compositionReady' or 'compositionComplete', actually i want to init element's trigger effects at different time position automaticly.
code as followed can change element's properties at current time, but it can't change element's properties at next coming trigger time:
sym.$("Ellipse").css({'top':209, 'left':251, 'height':27, 'width':27});
Thanks!
-
3. Re: How can i change element's properties at specific time position?
watergl Sep 16, 2014 2:35 AM (in response to Aubrey Scarza)Thank you!
In another words, defaultly, I set element 'product_lg' initial position value (19px, 33px, 125px, 164px) for time 'product_show', I want to change it's initial position value as (0,0,0,0) for time 'product_show' on trigger 'compositionReady', how to do this?
-
4. Re: How can i change element's properties at specific time position?
watergl Sep 16, 2014 6:01 PM (in response to Aubrey Scarza)I change the strategy for this solution, using bindTimelineActions method to monitor time update event, and use js change animation effects for what i want to go for.


