summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/browser/menu2/src/main/res/anim/menu_enter_left.xml
blob: de510ecb12f308f22f956ee892d6e40767c46df5 (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="50%"
        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>