# Change property as Entering/ExitingAnimation progresses

**URL:** https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881
**Category:** How-to Discussions
**Created:** [March 13, 2016, 11:11am UTC](https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881 "2016-03-13T11:11:31Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Fahad](https://avatars.discourse-cdn.com/v4/letter/f/ecccb3/32.png) [@Fahad](https://forums.fusetools.com/u/Fahad)
#### Post date: [March 13, 2016, 11:11am UTC](https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881/1 "2016-03-13T11:11:31Z")

</div>

I have a `<PageControl>` which has a bunch of pages in it, and each page has a `<Text ux:Name="title" Opacity="1" />`

I want it so that as I swipe the page left or right the title fades out relative to how much I’ve swiped, how do I do this?

---

<div class="post-metadata">

### Author: ![Edwin\_Reynoso](https://avatars.discourse-cdn.com/v4/letter/e/e99b99/32.png) [@Edwin\_Reynoso](https://forums.fusetools.com/u/Edwin_Reynoso)
#### Post date: [March 14, 2016, 9:38am UTC](https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881/2 "2016-03-14T09:38:41Z")

</div>

@Fudge:

```auto
<PageControl>
  <Page>
    <ActivatingAnimation>
      <Change Target="title.Opacity" Value="0" />
    </ActivatingAnimation>
    <Text ux:Name="title" Opacity="1" />
  </Page>
</PageControl>

```

This should work, but I think you may want the values switched instead of changing from 1 to 0, from 0-1

---

<div class="post-metadata">

### Author: ![Fahad](https://avatars.discourse-cdn.com/v4/letter/f/ecccb3/32.png) [@Fahad](https://forums.fusetools.com/u/Fahad)
#### Post date: [March 14, 2016, 10:16am UTC](https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881/3 "2016-03-14T10:16:20Z")

</div>

@Edwin

Thanks that worked, can I make it happen faster? So that by the time I’ve only swiped 1/4 of the way the “title” is made invisible?

---

<div class="post-metadata">

### Author: ![Edwin\_Reynoso](https://avatars.discourse-cdn.com/v4/letter/e/e99b99/32.png) [@Edwin\_Reynoso](https://forums.fusetools.com/u/Edwin_Reynoso)
#### Post date: [March 14, 2016, 10:51am UTC](https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881/4 "2016-03-14T10:51:19Z")

</div>

@Fudge

this should work:

`<Change Target="title.Opacity" Value="0" Duration="0.5" Delay="1" />`

So the animation should happen for 0.5 seconds but after a second.

---

<div class="post-metadata">

### Author: ![Fahad](https://avatars.discourse-cdn.com/v4/letter/f/ecccb3/32.png) [@Fahad](https://forums.fusetools.com/u/Fahad)
#### Post date: [March 14, 2016, 11:18am UTC](https://forums.fusetools.com/t/change-property-as-entering-exitinganimation-progresses/881/5 "2016-03-14T11:18:43Z")

</div>

That worked! Thanks @Edwin
