1
0
Fork 0
fenix/app/src/main/res/anim/zoom_in_fade.xml

19 lines
742 B
XML

<!-- This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:interpolator="@android:interpolator/linear"
android:fromAlpha="1.0" android:toAlpha="0"
android:duration="125" />
<scale
android:interpolator="@android:interpolator/linear"
android:pivotX="50%"
android:pivotY="50%"
android:fromXScale="100%"
android:toXScale="113%"
android:fromYScale="100%"
android:toYScale="113%"
android:duration="125" />
</set>