嗨,我想构建一个应用程序,如果用户空闲 5 秒钟,那么一个人将从左侧走并显示一个横幅,如文本块“你在做什么?”。我正在为 Windows 应用程序开发游戏应用程序,这就是我想到的想法。但我不知道如何在 XAMl 中,特别是在 WPF 中,使用 Windows phone 8 来做到这一点。
我对动画知之甚少,想了解更多。我知道故事板动画和过渡,但我怎么能用它来做这种动画呢?
<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>
但是这种动画很简单,请指导