Skip to content

Commit

Permalink
[Design/#65] fadein & fadeout animate 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
yeoncheong committed Jul 15, 2023
1 parent 13e6a8d commit ac95c26
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/src/main/res/anim/fadein.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="3000"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="0.0"
android:toAlpha="1.0">
</alpha>
7 changes: 7 additions & 0 deletions app/src/main/res/anim/fadeout.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="3000"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="1.0"
android:toAlpha="0.0">
</alpha>

0 comments on commit ac95c26

Please sign in to comment.