您好我想建立一个应用程序,如果用户闲置说5秒钟,然后一个人从左边走,会显示像文本块的横幅,其中“你在做什么?”。 我正在开发的Windows应用程序一个游戏应用程序,它是想法来到我的脑海里。 但我不知道如何做到这一点的XAML和特别是在WPF,随着Windows Phone 8。
我知道很少动画,想了解更多。 故事板动画,我知道transtions,但我怎么能使用做这样的动画?
<Storyboard x:Name="SuperAnimation" >
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="FirstImage" Storyboard.TargetProperty="(UIElement.Opacity)">
<EasingDoubleKeyFrame KeyTime="00:00:00" Value="0.2"/>
<EasingDoubleKeyFrame KeyTime="00:00:02" Value="0.6"/>
<EasingDoubleKeyFrame KeyTime="00:00:04" Value="0.3"/>
<EasingDoubleKeyFrame KeyTime="00:00:06.7000000" Value="1"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
但这种动画是非常简单的,请指导