Hi,
i have modified the Navigation animation example: https://www.fusetools.com/examples/navigation-animation
leaving the class as:
<Panel ux:Class="Card" Height="256" Width="256" Alignment="Bottom" ux:Name="p">
<EnteringAnimation Scale="0.5">
<Move RelativeTo="Size">
<Keyframe X="-0.5" Time="0.4"/>
<Keyframe X="-1" Time="0.6"/>
</Move>
<Scale Factor="0.5" Duration="1" />
</EnteringAnimation>
<ExitingAnimation Scale="0.5">
<Move RelativeTo="Size">
<Keyframe X="0.5" Time="0.6"/>
<Keyframe X="0" Time="1"/>
</Move>
<Scale Factor="0.5" Duration="1" />
</ExitingAnimation>
</Panel>
and the ux:
<Panel Margin="0,100">
<LinearNavigation Duration="0.4" Easing="CircularOut"/>
<SwipeNavigate SwipeDirection="Left" />
<Each Items="{profiles}">
<Card Name="{resource}" CachingMode="Never">
<Image Source="{DataToResource resource}"/>
<Clicked>
<NavigateTo Target="{resource}"/>
</Clicked>
</Card>
</Each>
</Panel>
getting the result:
as u can see the card on the left is over the “active” card… how i do bring to bottom that one? (or bring to front the active)