次の方法で共有


方法: 子タイムラインを使用してアニメーションを簡略化する

この例では、子 ParallelTimeline オブジェクトを使用してアニメーションを簡略化する方法を示します。 Storyboard は、含まれるタイムラインのターゲット情報を提供する Timeline の一種です。 Storyboard を使用して、オブジェクトとプロパティの情報を含むタイムラインのターゲット情報を提供します。

アニメーションを開始するには、ParallelTimelineの入れ子になった子要素として 1 つ以上の Storyboard オブジェクトを使用します。 これらの ParallelTimeline オブジェクトには他のアニメーションを含めることができるため、複雑なアニメーションのタイミング シーケンスをより適切にカプセル化できます。 たとえば、同じ TextBlockStoryboard と複数の図形をアニメーション化する場合は、TextBlock と図形のアニメーションを分離し、それぞれを個別の ParallelTimelineに配置できます。 各 ParallelTimeline には独自の BeginTime があり、この ParallelTimelineに対して BeginTime のすべての子要素が開始されるため、タイミングはカプセル化された方が適切です。

次の例では、同じ TextBlock内から 2 つのテキスト (Storyboard オブジェクト) をアニメーション化します。 ParallelTimeline は、TextBlock オブジェクトのいずれかのアニメーションをカプセル化します。

パフォーマンスに関するメモ:Storyboard のタイムラインは互いに入れ子にできますが、必要なオーバーヘッドが少ない ParallelTimeline の方が入れ子に適しています。 (Storyboard クラスは、ParallelTimeline クラスから継承されます)。

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Canvas >

    <!-- TextBlock with text "ParallelTimelines are..." that gets animated. -->
    <TextBlock Name="FirstTextBlock" Canvas.Top="30" Canvas.Left="300" FontSize="24" >
      ParallelTimelines are...
      <TextBlock.RenderTransform>
        <TransformGroup>
          <SkewTransform x:Name="FirstTextBlockSkew" CenterX="25" CenterY="25" AngleX="0" AngleY="0" />
        </TransformGroup>
      </TextBlock.RenderTransform>
    </TextBlock>

    <!-- TextBlock with text "Useful" that gets animated. -->
    <TextBlock Name="SecondTextBlock" Opacity="0" Canvas.Top="30" Canvas.Left="585" FontSize="24" >
      Useful
      <TextBlock.RenderTransform>
        <TransformGroup>
          <SkewTransform x:Name="SecondTextBlockSkew" CenterX="25" CenterY="25" AngleX="0" AngleY="0" />
          <ScaleTransform x:Name="SecondTextBlockScale" CenterX="0" CenterY="24" />
        </TransformGroup>
      </TextBlock.RenderTransform>
    </TextBlock>

    <!-- Event Trigger that controls all animations on the page. -->
    <Canvas.Triggers>
      <EventTrigger RoutedEvent="Canvas.Loaded">
        <BeginStoryboard>
          <Storyboard>

            <!-- "ParallelTimelines are..." fades into view. -->
            <DoubleAnimation Storyboard.TargetName="FirstTextBlock"
            Storyboard.TargetProperty="Opacity" Duration="0:0:2" From="0" To="1" />

            <!-- "ParallelTimelines are..." skews to the left. -->
            <DoubleAnimation Storyboard.TargetName="FirstTextBlockSkew"
            Storyboard.TargetProperty="AngleX" Duration="0:0:1" BeginTime="0:0:2" From="0" To="45" />

            <!-- This ParallelTimeline contains all the animations for the TextBlock with the text
            "Useful" in it. This ParallelTimeline begins 4 seconds after the Storyboard timeline begins and all child
            animations begin relative to this parent timeline. -->
            <ParallelTimeline BeginTime="0:0:4">

              <!-- "Useful" fades into view. -->
              <DoubleAnimation Storyboard.TargetName="SecondTextBlock"
              Storyboard.TargetProperty="Opacity" Duration="0:0:2" From="0" To="1" />

              <!-- "Useful" slides in from the right. -->
              <DoubleAnimation Storyboard.TargetName="SecondTextBlockSkew"
              Storyboard.TargetProperty="AngleX" Duration="0:0:2" From="90" To="180" />

              <!-- "Useful" skews to the right. -->
              <DoubleAnimation Storyboard.TargetName="SecondTextBlockSkew"
              Storyboard.TargetProperty="AngleX" BeginTime="0:0:3" Duration="0:0:0.2" From="0" To="-60" />

              <!-- "Useful" Gets taller. -->
              <DoubleAnimation Storyboard.TargetName="SecondTextBlockScale"
              Storyboard.TargetProperty="ScaleY" BeginTime="0:0:3" Duration="0:0:0.2" From="1" To="3" />
            </ParallelTimeline>
          </Storyboard>
        </BeginStoryboard>
      </EventTrigger>
    </Canvas.Triggers>
  </Canvas>
</Page>

こちらも参照ください