blob: c6eb544b9837cfc45207c335b25ee398891fb9fa [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<s:Module
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark">
<s:states>
<s:State name="default"/>
<s:State name="flipped"/>
</s:states>
<s:transitions>
<s:Transition id="t1">
<s:Wipe id="wipe"
direction="right"
target="{holder}"
duration="1000" />
</s:Transition>
</s:transitions>
<s:Panel title="Wipe Effect Example"
width="100%" height="100%">
<s:HGroup horizontalCenter="0" top="15" >
<s:VGroup width="100%" height="100%">
<s:Group id="holder">
<s:BitmapImage
source="@Embed('assets/back.png')"
visible="true" visible.flipped="false"/>
<s:BitmapImage width="200" height="200"
source="@Embed('assets/ApacheFlexLogo.png')"
visible="false" visible.flipped="true"/>
</s:Group>
<s:Button
label="Wipe Right"
click="currentState = (currentState == 'flipped') ? 'default' : 'flipped'" />
</s:VGroup>
<!-- Directions -->
<s:VGroup id="detailsBox"
width="400"
left="0">
<s:Label
width="400"
color="#323232"
text="The Wipe effect wipes from bitmapFrom to the bitmapTo image in the given direction. Click the 'Wipe Right' button to see the effect."/>
</s:VGroup>
</s:HGroup>
</s:Panel>
</s:Module>