tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

erase_animation.xml (888B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <set xmlns:android="http://schemas.android.com/apk/res/android"
      6    android:interpolator="@android:anim/accelerate_interpolator">
      7    <scale
      8        android:duration="@integer/erase_animation_scale_duration"
      9        android:fromXScale="100%p"
     10        android:toXScale="95%p"
     11        android:fromYScale="100%p"
     12        android:toYScale="95%p"
     13        android:pivotX="50%p"
     14        android:pivotY="50%p" />
     15    <translate
     16        android:duration="@integer/erase_animation_translate_duration"
     17        android:fromYDelta="0"
     18        android:toYDelta="100%p"
     19        android:startOffset="@integer/erase_animation_translate_offset" />
     20 </set>