2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-19 09:25:34 +00:00
iceraven-browser/app/src/main/res/anim/zoom_out_fade.xml

20 lines
761 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/decelerate_cubic"
android:fromAlpha="0" android:toAlpha="1"
android:duration="175" />
<scale
android:interpolator="@android:interpolator/decelerate_cubic"
android:pivotX="50%"
android:pivotY="50%"
android:fromXScale="108%"
android:toXScale="100%"
android:fromYScale="108%"
android:toYScale="100%"
android:duration="175" />
</set>