Поделиться через


Практическое руководство. Установка длительности анимации

Обновлен: Ноябрь 2007

Timeline представляет сегмент времени, продолжительность которого определяется Duration шкалы времени. Когда Timeline достигает конца, воспроизведение прекращается. Если Timeline имеет дочерние шкалы времени, то они также останавливают воспроизведение. В случае анимации Duration определяет, как долго анимация выполняет переход от ее начального значения до конечного.

Можно задать Duration с определенным, ограниченным временем или специальными значениями Automatic или Forever. Длительность анимации всегда должна быть значением времени, поскольку анимация всегда должна иметь определенную, ограниченную длину — в противном случае анимация не будет знать, каким образом осуществляется переход между ее значениями. Шкалы времени контейнера (объекты TimelineGroup), такие как Storyboard и ParallelTimeline, имеют продолжительность по умолчанию Automatic, то есть они автоматически завершаются после того, как их последний дочерний элемент останавливает воспроизведение.

В следующем примере анимируется ширина, высота и заполнение цветом Rectangle. Длительность, установленная для временной шкалы анимации или контейнера, оказывает влияние на эффекты анимации, включая управление скоростью анимации, замену значения продолжительности для дочерних шкал времени на значение продолжительности для шкалы времени контейнера.

Пример

<Page 
  xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel Margin="20">

    <Rectangle Width="100" Height="100" Name="myRectangle">
      <Rectangle.Fill>
        <SolidColorBrush x:Name="MyAnimatedBrush" Color="Black" />
      </Rectangle.Fill>
      <Rectangle.Triggers>

        <!-- Animates the rectangle fill to yellow and width to 300. -->
        <EventTrigger RoutedEvent="Rectangle.Loaded">
          <BeginStoryboard>

            <!-- By default, TimelineGroup objects like Storyboard and ParallelTimeline have 
            a Duration of "Automatic". A TimelineGroup's automatic duration encompasses its 
            last-ending child. In this example, there is only one child of the Storyboard, the
            ParallelTimeline, so when the ParallelTimeline ends, the Storyboard duration will
            automatically end. -->
            <Storyboard>

              <!-- This ParallelTimeline has overriden its default duration of "Automatic" with
              a finite duration of half a second. This will force this Timeline to end after half a
              second even though its child Timelines have a longer duration (2 and 4 seconds respectively). 
              This cuts off the animation prematurely and the rectangle's fill will not go all the way to 
              yellow nor will the rectangle width get all the way to 300. Again, the default duration of a
              ParallelTimeline is "Automatic" so if you remove the finite duration, the ParallelTimeline
              will wait for its child timelines to end before it ends. -->

              <!-- Note: To specify a finite time in XAML, use the syntax of "days:hours:seconds". As mentioned,
              this ParallelTimeline has a duration of half a second. -->
              <ParallelTimeline Duration="0:0:0.5">

                <!-- For Animation Timelines like DoubleAnimation, the duration is one factor that
                determines the rate at which an animation appears to progress. For example, the DoubleAnimation
                below that animates the rectangle height will complete in only one second while the animation
                that animates the width willwill complete in 2 seconds which is relatively fast compared to the DoubleAnimation
                which animates the rectangle width over 4 seconds. -->
                <DoubleAnimation
                  Storyboard.TargetName="myRectangle"
                  Storyboard.TargetProperty="Height"
                  To="300" Duration="0:0:1" />

                <DoubleAnimation
                  Storyboard.TargetName="myRectangle"
                  Storyboard.TargetProperty="Width"
                  To="300" Duration="0:0:4" />

                <ColorAnimation
                  Storyboard.TargetName="MyAnimatedBrush"
                  Storyboard.TargetProperty="Color"
                  To="Yellow" Duration="0:0:2" />

              </ParallelTimeline>
            </Storyboard>
          </BeginStoryboard>
        </EventTrigger>

      </Rectangle.Triggers>
    </Rectangle>
  </StackPanel>
</Page>

См. также

Основные понятия

Общие сведения об эффектах анимации

Ссылки

Duration