Compartilhar via


Como: Animate an Embossed Visual Effect

Este tópico explica como animar propriedades de um efeito visual de alto relevo.

Exemplo

O exemplo a seguir anima a propriedade LightAngle de um EmbossBitmapEffect tal que os efeitos de sombreamento resultantes do posicionamento da "luz" mudará sobre a borda da imagem em relevo.

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

  <StackPanel>

    <Image Source="/images/WaterLilies.jpg" Width="600"  Margin="10" >
      <Image.BitmapEffect>
        <EmbossBitmapEffect x:Name="myEmbossBitmapEffect"  Relief="0.8" LightAngle="0" />
      </Image.BitmapEffect>
      <Image.Triggers>
        <EventTrigger RoutedEvent="Image.Loaded">
          <BeginStoryboard>
            <Storyboard>

              <!-- Animate the LightAngle so that the artificial light
                   orbits around the embossed image which makes the
                   shadows cast by the emboss shift accordingly. -->
              <DoubleAnimation
               Storyboard.TargetName="myEmbossBitmapEffect"
               Storyboard.TargetProperty="LightAngle"
               From="0" To="360" Duration="0:0:3" />

            </Storyboard>
          </BeginStoryboard>
        </EventTrigger>
      </Image.Triggers>
    </Image>

  </StackPanel>

</Page>

For the complete sample, see Exemplo da galeria Efeitos bitmap.

Consulte também

Tarefas

Como: Criar um efeito visual embaralhado

Como: Animate Multiple Visual Effects

Exemplo da galeria Efeitos bitmap

Conceitos

Visão Geral de Efeitos de Bitmap

Referência

LightAngle

EmbossBitmapEffect

BitmapEffect

Outros recursos

Bitmap Effects How-to Topics

Exemplos de efeitos de bitmap