Created
August 16, 2011 07:05
-
-
Save mikehibm/1148584 to your computer and use it in GitHub Desktop.
ゲーム終了時の結果表示の為のアニメーション定義
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <set xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:fillEnabled="true" | |
| android:fillAfter="true" | |
| > | |
| <alpha xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:interpolator="@android:anim/accelerate_interpolator" | |
| android:fromAlpha="0.0" | |
| android:toAlpha="1.0" | |
| android:duration="2000" | |
| /> | |
| <scale xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:interpolator="@android:anim/accelerate_interpolator" | |
| android:duration="2000" | |
| android:fromXScale="0.2" | |
| android:toXScale="1.0" | |
| android:fromYScale="0.2" | |
| android:toYScale="1.0" | |
| android:pivotX="50%" | |
| android:pivotY="50%" | |
| /> | |
| <rotate xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:interpolator="@android:anim/decelerate_interpolator" | |
| android:duration="2000" | |
| android:fromDegrees="0" | |
| android:toDegrees="1050" | |
| android:pivotX="50%" | |
| android:pivotY="50%" | |
| /> | |
| <translate xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:startOffset="2500" | |
| android:interpolator="@android:anim/accelerate_interpolator" | |
| android:duration="1000" | |
| android:fromYDelta="0" | |
| android:toYDelta="-80" | |
| /> | |
| </set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment