高仿京東到家APP引導(dǎo)頁炫酷動畫效果

前言

京東到家APP的引導(dǎo)頁做的可圈可點源譬,插畫+動效千贯,簡明生動地說明了APP最吸引用戶的幾個亮點(商品多,價格低晌坤,配送快...)逢艘。本文主要分析拆解這些動畫效果旦袋,并完成一個高仿Demo,完整的代碼可在文章結(jié)尾獲取它改。


京東到家APP引導(dǎo)頁

功能分析

分析結(jié)果基于對APP進行反編譯和我個人的理解(不然還能怎么辦呢疤孕?我太難了,哈哈哈)

  • 淺淺的背景圖+四個引導(dǎo)頁面央拖,每一個頁面動畫播放完成后自動滑動到下一個頁面祭阀。
    實現(xiàn):用ViewPager+4個View實現(xiàn),每一個頁面對應(yīng)一個View鲜戒,一個View包含一個LottieAnimationView专控,在頁面中監(jiān)聽Lottie動畫的播放,播放完成后自動切換到下一個頁面遏餐,ViewPager使用的是Alibaba開源的UltraViewPager
背景圖片 引導(dǎo)圖1 引導(dǎo)圖2 引導(dǎo)圖3 引導(dǎo)圖4
bg.png
1.png
2.png
3.png
4.png
  • 頁面滑動切換時有一個動畫效果伦腐,自定義ViewPager中的PageTransformer接口實現(xiàn)頁面切換旋轉(zhuǎn)動畫效果,Title有透明度漸變效果失都,用屬性動畫ObjectAnimator實現(xiàn)


    頁面之間切換效果
  • 當(dāng)滑動到最后一個頁面時柏蘑,出現(xiàn)一個帶有“立即體驗”文本的按鈕,出現(xiàn)時從底部向上彈出并且透明度從0到1變化粹庞,當(dāng)從最后一個頁面向前滑動時咳焚,按鈕從底部消失并且透明度從1到0變化,使用屬性動畫ObjectAnimator實現(xiàn)位移+透明度變化動畫

布局分析

使用uiautomatorviewer查看layout布局文件庞溜,如下:


layout文件分析
  • 根布局為ConstraintLayout革半,子節(jié)點為ViewPager,對應(yīng)的xml文件如下:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/white">

    <com.airbnb.lottie.LottieAnimationView
        android:id="@+id/lottie_bg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent" />

    <com.tmall.ultraviewpager.UltraViewPager
        android:id="@+id/viewpager"
        android:layout_width="0.0dip"
        android:layout_height="0.0dip"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <com.airbnb.lottie.LottieAnimationView
        android:id="@+id/lottie_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <ImageView
        android:id="@+id/ivJump"
        android:layout_width="46.0dip"
        android:layout_height="0.0dip"
        android:layout_marginRight="20.0dip"
        android:background="@drawable/pdj_guide_jump"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintDimensionRatio="63:28.5"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.07" />

    <ImageView
        android:id="@+id/iv_start"
        android:layout_width="104.29999dip"
        android:layout_height="30.669983dip"
        android:background="@drawable/pdj_guide_button"
        android:focusable="true"
        android:visibility="gone"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        />


</androidx.constraintlayout.widget.ConstraintLayout>

  • 引導(dǎo)頁總共有四個頁面流码,每一個頁面對應(yīng)一個lottie文件又官,對應(yīng)的xml文件如下:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <com.airbnb.lottie.LottieAnimationView
        android:id="@+id/pdj_guide_lottie_item"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

資源分析

  • 資源文件放在了src/main/assets目錄下,配置文件為LottieConfig.json漫试,定義了各種屬性信息赏胚,如下:
{
  "radius": 2020,
  "totalPageNum": 4,
  "lottieBgName": "guide_lottie_bg",
  "pageAnimTime": 350,
  "buttonAnimTime": 350,
  "lottieTitle": [
    {
      "lottieName": "title_lottie_0"
    },
    {
      "lottieName": "title_lottie_1"
    },
    {
      "lottieName": "title_lottie_2"
    },
    {
      "lottieName": "title_lottie_3"
    }
  ],
  "lottieMain": [
    {
      "lottieName": "main_lottie_0"
    },
    {
      "lottieName": "main_lottie_1"
    },
    {
      "lottieName": "main_lottie_2"
    },
    {
      "lottieName": "main_lottie_3",
      "repeatInterval": {
        "start": 0.288,
        "end": 1
      }
    }
  ]
}
  • radius --定義PageTransformer時會用到,用于確定最大旋轉(zhuǎn)角度
  • totalPageNum --引導(dǎo)頁的數(shù)量
  • lottieBgName --背景圖片對應(yīng)的Lottie文件名
  • pageAnimTime --ViewPager各個頁面之間切換的滑動時間
  • buttonAnimTime --最后一個頁面"立即體驗"按鈕做位移和透明度動畫的時長
  • lottieTitle --每個引導(dǎo)頁標(biāo)題對應(yīng)的Lottie文件名
  • lottieMain -- 每個引導(dǎo)頁內(nèi)容對應(yīng)的Lottie文件名

代碼實現(xiàn)

基于以上分析商虐,用代碼實現(xiàn)就比較簡單了觉阅,此處貼出部分實現(xiàn)代碼

  • 加載本地lottie zip文件,lottie支持加載本地和遠程json,zip文件秘车,通常我們將lottie文件放在src/main/assets目錄下
 fun loadAssetsLottieZipFile(context: Context, lottieImageView:LottieAnimationView, fileName:String,repeatCount:Int= LottieDrawable.INFINITE,autoPlay:Boolean=true){
        val lottieCompose= if(fileName.endsWith(".zip")){
            LottieCompositionFactory.fromAssetSync(context, fileName).value
         }
        else{
            LottieCompositionFactory.fromAssetSync(context, fileName.plus(".zip")).value
         }
        lottieImageView.progress=0.0f
        lottieImageView.repeatCount=repeatCount
        lottieImageView.setComposition(lottieCompose!!)
        if(autoPlay){
            lottieImageView.playAnimation()
        }

    }
  • 添加圓點指示符
        viewpager.initIndicator()
        viewpager.indicator.setOrientation(UltraViewPager.Orientation.HORIZONTAL)
                .setNormalIcon(drawableToBitmap(ContextCompat.getDrawable(applicationContext, R.drawable.guide_white_dot)!!))
                .setFocusIcon(drawableToBitmap(ContextCompat.getDrawable(applicationContext, R.drawable.guide_dark_dot)!!))
                .setIndicatorPadding(ScreenHelper.dp2px(applicationContext, 5.0F))
                .setMargin(0, 0, 0, ScreenHelper.dp2px(applicationContext, 20.0F))
        viewpager.indicator.setGravity(Gravity.BOTTOM or Gravity.CENTER_HORIZONTAL)
        viewpager.indicator.build()

其中drawableToBitmap對應(yīng)的代碼為:

    /**
     * Drawable轉(zhuǎn)換成Bitmap
     */
    private fun drawableToBitmap(drawable: Drawable): Bitmap {
        val bitmap = Bitmap.createBitmap(drawable.intrinsicWidth, drawable.intrinsicHeight, Bitmap.Config.ARGB_8888)
        val canvas = Canvas(bitmap)
        drawable.setBounds(0, 0, drawable.intrinsicWidth, drawable.intrinsicHeight)
        drawable.draw(canvas)
        return bitmap
    }
  • 自定義PageTransformer

    • position < -1 時典勇,旋轉(zhuǎn)到最大角度,旋轉(zhuǎn)中心為右下角叮趴;
    • -1 < position < 0 時割笙,position 越靠近 0 ,旋轉(zhuǎn)角度越小,旋轉(zhuǎn)中心向下邊緣中心靠攏伤溉;
    • 0 <= position <= 1 時般码,position 越靠近 0 ,旋轉(zhuǎn)角度越小乱顾,旋轉(zhuǎn)中心向下邊緣中心靠攏板祝;
    • position > 1 時,旋轉(zhuǎn)到最大角度走净,旋轉(zhuǎn)中心為左下角券时。

代碼如下所示:

class GuideTransformer(context: Context, private val mRadius: Int) : ViewPager.PageTransformer {
    private var mMaxRotate = 0f

    init {
        if (mRadius > 0) {
            mMaxRotate = (2.0 * Math.toDegrees(atan2((ScreenHelper.getScreenWidth(context) / 2).toDouble(), mRadius.toDouble()))).toFloat()
        }
    }

    override fun transformPage(page: View, position: Float) {
        if (mRadius == 0) return

        if (position < -1.0f) {
            page.rotation = -1.0f * mMaxRotate
            page.pivotX = page.width.toFloat()
            page.pivotY = page.height.toFloat()
            return
        }
        if (position <= 1.0f) {
            if (position < 0.0f) {
                page.pivotX = page.width * (0.5f + 0.5f * -position)
                page.pivotY = page.height.toFloat()
                page.rotation = position * mMaxRotate
                return
            }
            page.pivotX = 0.5f * page.width * (1.0f - position)
            page.pivotY = page.height.toFloat()
            page.rotation = position * mMaxRotate
            return
        }
        page.rotation = mMaxRotate
        page.pivotX = 0f
        page.pivotY = page.height.toFloat()
    }

}

完整代碼地址

https://github.com/kongpf8848/Animation

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市伏伯,隨后出現(xiàn)的幾起案子橘洞,更是在濱河造成了極大的恐慌,老刑警劉巖说搅,帶你破解...
    沈念sama閱讀 212,222評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件炸枣,死亡現(xiàn)場離奇詭異,居然都是意外死亡弄唧,警方通過查閱死者的電腦和手機抛虏,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,455評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來套才,“玉大人,你說我怎么就攤上這事慕淡”嘲椋” “怎么了?”我有些...
    開封第一講書人閱讀 157,720評論 0 348
  • 文/不壞的土叔 我叫張陵峰髓,是天一觀的道長傻寂。 經(jīng)常有香客問我,道長携兵,這世上最難降的妖魔是什么疾掰? 我笑而不...
    開封第一講書人閱讀 56,568評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮徐紧,結(jié)果婚禮上静檬,老公的妹妹穿的比我還像新娘。我一直安慰自己并级,他們只是感情好拂檩,可當(dāng)我...
    茶點故事閱讀 65,696評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著嘲碧,像睡著了一般稻励。 火紅的嫁衣襯著肌膚如雪泻仙。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,879評論 1 290
  • 那天蚌本,我揣著相機與錄音煌妈,去河邊找鬼。 笑死煤篙,一個胖子當(dāng)著我的面吹牛斟览,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播舰蟆,決...
    沈念sama閱讀 39,028評論 3 409
  • 文/蒼蘭香墨 我猛地睜開眼趣惠,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了身害?” 一聲冷哼從身側(cè)響起味悄,我...
    開封第一講書人閱讀 37,773評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎塌鸯,沒想到半個月后侍瑟,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,220評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡丙猬,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,550評論 2 327
  • 正文 我和宋清朗相戀三年涨颜,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片茧球。...
    茶點故事閱讀 38,697評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡庭瑰,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出抢埋,到底是詐尸還是另有隱情弹灭,我是刑警寧澤,帶...
    沈念sama閱讀 34,360評論 4 332
  • 正文 年R本政府宣布揪垄,位于F島的核電站穷吮,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏饥努。R本人自食惡果不足惜捡鱼,卻給世界環(huán)境...
    茶點故事閱讀 40,002評論 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望酷愧。 院中可真熱鬧驾诈,春花似錦、人聲如沸溶浴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,782評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽戳葵。三九已至就乓,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背生蚁。 一陣腳步聲響...
    開封第一講書人閱讀 32,010評論 1 266
  • 我被黑心中介騙來泰國打工噩翠, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人邦投。 一個月前我還...
    沈念sama閱讀 46,433評論 2 360
  • 正文 我出身青樓伤锚,卻偏偏與公主長得像,于是被迫代替她去往敵國和親志衣。 傳聞我的和親對象是個殘疾皇子屯援,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,587評論 2 350

推薦閱讀更多精彩內(nèi)容