summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/browser/menu/src/main/res/anim-ldrtl/menu_enter_bottom.xml
blob: 6d27c410ead64194e99e92b5d85f32a25fa0cc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<!-- 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">
    <scale android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        android:fromXScale="0"
        android:toXScale="1"
        android:fromYScale="0"
        android:toYScale="1"
        android:pivotX="5%"
        android:pivotY="100%"
        android:duration="@android:integer/config_shortAnimTime" />
    <alpha android:interpolator="@android:anim/linear_interpolator"
        android:fromAlpha="0"
        android:toAlpha="1"
        android:duration="@android:integer/config_shortAnimTime" />
    <translate android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        android:fromYDelta="0"
        android:toYDelta="0"
        android:duration="@android:integer/config_shortAnimTime" />
</set>