Correct animation condition
#1
I've a Problem with the correct animation condition.

Thats my code:
PHP Code:
<animation type="WindowOpen">                
   <
effect type="slide" start="-450" end="0" time="400" delay="2000" tween="cubic" />                
</
animation>                                 
<
animation type="Conditional" condition="!Container(550).OnNext + !Container(550).OnPrevious" reversible="false">                    
   <
effect type="slide" start="0" end="-230" time="400" delay="3000" tween="cubic" />                
</
animation

On WindowOpen the navigation should slide in, and after 2 seconds it should slide out.
Every time i dont use the navigation, the navigation should slide out after 3 seconds.

The Problem is, that the navigation is already slided out on startup. No slide in for 2 seconds / It seems, delay isn't working.

Anyone knows a solution for this? :/
Reply
#2
Code:
<animation type="WindowOpen">                
   <effect type="slide" end="450,0" time="400" tween="cubic" />      
   <effect type="slide" end="-450,0" time="400" delay="2000" tween="cubic" />            
</animation>
Reply

Logout Mark Read Team Forum Stats Members Help
Correct animation condition0