仿格瓦拉驗(yàn)證碼界面動(dòng)畫效果

最近在項(xiàng)目當(dāng)中有一個(gè)滑動(dòng)驗(yàn)證碼動(dòng)畫效果要實(shí)現(xiàn),剛開(kāi)始看到這個(gè)效果感覺(jué)還是可以的,但是要實(shí)現(xiàn)起來(lái)覺(jué)得有點(diǎn)麻煩质帅,我想大家一定都和我一樣拿到這個(gè)需求一定是一頓谷歌烈疚,百度啥的黔牵,但是搜索了很久都沒(méi)找到相似的效果,又催的急沒(méi)辦法爷肝,卷起袖子干吧猾浦,就開(kāi)始自己造輪子的過(guò)程,在做這個(gè)需求的過(guò)程中灯抛,還是很有收獲的比如說(shuō)復(fù)習(xí)了下高中的函數(shù)知識(shí)金赦,我想大家都和一樣高中的數(shù)學(xué)知識(shí)應(yīng)該都忘的差不多了吧,反正我是忘的差不多了对嚼,廢話不多說(shuō)了夹抗,直接上代碼,里面使用到了的圖片,大家可以自己搞一點(diǎn)圖片進(jìn)去試試

下圖是我截取的一部分猪半,效果就是這樣

WX20171218-163655@2x.png
WX20171218-163642@2x.png
import android.content.Context;
import android.support.annotation.AttrRes;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.RelativeLayout;

import com.nineoldandroids.view.ViewHelper;

public class MyFrameLayout extends FrameLayout {

    /**
     * 這里面所說(shuō)的右邊的距離兔朦,都是子view 距離父控件的距離偷线,比例右邊距離就是說(shuō)是右邊到父控件的距離
     */
    private float down_x;//按下點(diǎn)的距離
    private ImageView imageView_8;//大框中變化的框
    private ImageView imageView_7;//第一個(gè)框
    private ImageView imageView_6;//最左邊的小框,以下是從左到右
    private ImageView imageView_5;//第二個(gè)小框

    private ImageView imageView_4;//第三個(gè)小框

    private ImageView imageView_3;//第四個(gè)小框

    private ImageView imageView_2;//第五個(gè)小框

    private ImageView imageView_1;//第六個(gè)小框

    private float frist_left;//大框的左邊

    private float frist_right;//大框的右邊

    private float eight_right;//最右邊框的右邊距離沽甥,也就是第有個(gè)小框的右邊距離

    private float frist_center;//最大框的中心點(diǎn)

    private float position;//表示變化的周期声邦,也是從0-1的變化的距離

    private float position_key;//表示大框中心點(diǎn)移動(dòng)到這個(gè)點(diǎn)的時(shí)候開(kāi)始變化

    private float position_7;//大框的中點(diǎn)的位置

    private int width;//這個(gè)view 的寬度

    private float three_right;//第六個(gè)小框的右邊距離

    private float position_center;//兩個(gè)小框中間距離一半

    protected boolean isFrist = true;//這里作用就是只能滑動(dòng)一次

    private int[] arr = {R.drawable.test_1,R.drawable.test_2,R.drawable.test_3,R.drawable.test_4
            ,R.drawable.test_5,R.drawable.test_6,R.drawable.test_bg
                        };
    private float five_right;//第5個(gè)小框的右邊距離
    private float six_right;//第六個(gè)小框的右邊距離
    private float seven_right;//第7個(gè)小框的右邊距離
    private float four_right;//第八個(gè)小框的右邊距離

    private static int KEY = 0;

    public MyFrameLayout(@NonNull Context context) {
        super(context);
        init(context);
    }


    public MyFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }

    public MyFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context);
    }


    /**
     * 方便外部重置
     */
    public void reset(){
        isFrist = true;
        ViewHelper.setTranslationX(imageView_7, 0);
        ViewHelper.setTranslationX(imageView_8, 0);

    }
    /**
     * 從外面?zhèn)鬟M(jìn)來(lái)一個(gè)圖片數(shù)組
     * 這里里面也可以傳遞一個(gè)數(shù)字的數(shù)字
     * @param arr
     */
    public void inview(int[] arr) {
        this.arr = arr;
        imageView_1.setImageDrawable(this.getResources().getDrawable(R.drawable.test_1));
        imageView_2.setImageDrawable(this.getResources().getDrawable(R.drawable.test_2));
        imageView_3.setImageDrawable(this.getResources().getDrawable(R.drawable.test_3));
        imageView_4.setImageDrawable(this.getResources().getDrawable(R.drawable.test_4));
        imageView_5.setImageDrawable(this.getResources().getDrawable(R.drawable.test_5));
        imageView_6.setImageDrawable(this.getResources().getDrawable(R.drawable.test_6));
    }

    private void init(Context context) {

        View view = View.inflate(context, R.layout.my_framelayout, this);

        imageView_8 = (ImageView) view.findViewById(R.id.iv_8);
        imageView_7 = (ImageView) view.findViewById(R.id.iv_7);
        imageView_6 = (ImageView) view.findViewById(R.id.iv_6);
        imageView_5 = (ImageView) view.findViewById(R.id.iv_5);
        imageView_4 = (ImageView) view.findViewById(R.id.iv_4);
        imageView_3 = (ImageView) view.findViewById(R.id.iv_3);
        imageView_2 = (ImageView) view.findViewById(R.id.iv_2);
        imageView_1 = (ImageView) view.findViewById(R.id.iv_1);

    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                if (isFrist) {
                    down_x = event.getX();
                    if (down_x - frist_right >= 0 || down_x - frist_left <= 0) {//讓其在這個(gè)大框的里面才能讓其滑動(dòng)
                        return false;
                    }
                } else {
                    return false;
                }
                break;
            case MotionEvent.ACTION_MOVE:
                float currentX = event.getX();
                if (currentX != down_x) {
                    setTranslation(currentX);
                }
                break;
            case MotionEvent.ACTION_UP:
                isFrist = false;
                lister.moveKey(KEY);//回調(diào)
                break;
        }
        return true;
    }


    /**
     * 隨著手指的移動(dòng),一直會(huì)調(diào)用這個(gè)方法
     * @param transl
     */
    public void setTranslation(float transl) {

        //實(shí)時(shí)的獲取大框的中心點(diǎn)的位置
        float move_position = transl - down_x + position_7;
        //只有大框的中心點(diǎn)位置到達(dá)指定的關(guān)鍵點(diǎn)才讓其變化摆舟,這里就是大框只變化的小框
        float scX = move_position - position_key;
        if (scX >= 0) {
            changeDrawable(move_position,scX);
        }else {
            imageView_8.setImageDrawable(null);//其余的地方就用不設(shè)置圖片
        }

        if (transl <= down_x || transl - down_x + position_7 >= width - frist_center) {//這個(gè)就是邊界點(diǎn)的設(shè)置

        } else {
            ViewHelper.setTranslationX(imageView_7, transl - down_x);
            ViewHelper.setTranslationX(imageView_8, transl - down_x);
        }

    }

    /**
     * 轉(zhuǎn)變image_7的圖片背景
     */
    private void changeDrawable(float move_position,float scX){

        if (move_position <=three_right+position_center  && move_position >= 0) {//第一張圖片的設(shè)置亥曹,以及變化的范圍,下面也是相對(duì)應(yīng)
            imageView_8.setImageDrawable(this.getResources().getDrawable(arr[5]));
            KEY = 1;
        } else if (move_position>three_right+position_center && move_position<=four_right+position_center){
            imageView_8.setImageDrawable(this.getResources().getDrawable(arr[4]));
            KEY = 2;
        }else if (move_position>four_right+position_center && move_position<=five_right+position_center){
            imageView_8.setImageDrawable(this.getResources().getDrawable(arr[3]));
            KEY = 3;
        }else if (move_position>five_right+position_center && move_position<=six_right+position_center){
            imageView_8.setImageDrawable(this.getResources().getDrawable(arr[2]));
            KEY = 4;
        }else if (move_position>six_right+position_center && move_position<=seven_right+position_center){
            imageView_8.setImageDrawable(this.getResources().getDrawable(arr[1]));
            KEY = 5;
        }else if (move_position>seven_right+position_center && move_position<=eight_right+position_center){
            imageView_8.setImageDrawable(this.getResources().getDrawable(arr[0]));
            KEY = 6;
        }else {
            imageView_8.setImageDrawable(null);
            KEY = 0;
        }

        //這就是這個(gè)項(xiàng)目的關(guān)鍵點(diǎn)恨诱,利用正弦函數(shù)媳瞪,來(lái)達(dá)到這個(gè)效果,至于為啥是正弦我也是惡補(bǔ)了下高中的數(shù)學(xué)(開(kāi)玩笑),才有想法
        //其實(shí)這個(gè)大家想明白了就很簡(jiǎn)單
        ViewHelper.setScaleX(imageView_8, (float) (Math.sin((double) (scX * Math.PI / (position * 2)))));
        ViewHelper.setScaleY(imageView_8, (float) (Math.sin((double) (scX * Math.PI / (position * 2)))));
//
    }

    private TransterListener lister;

    public interface TransterListener {
        void moveKey(int key);
    }

    public void setLister(TransterListener lister) {
        this.lister = lister;
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);


        width = getWidth();

        RelativeLayout childAt = (RelativeLayout) MyFrameLayout.this.getChildAt(0);

        int childCount = childAt.getChildCount();
        frist_left = childAt.getChildAt(childCount - 2).getLeft();
        frist_right = childAt.getChildAt(childCount - 2).getRight();

        //大框的半徑
        frist_center = (frist_right - frist_left) / 2;

        float three_left = childAt.getChildAt(childCount - 3).getLeft();

        three_right = childAt.getChildAt(childCount - 3).getRight();

        four_right = childAt.getChildAt(childCount - 4).getRight();

        five_right = childAt.getChildAt(childCount - 5).getRight();

        six_right = childAt.getChildAt(childCount - 6).getRight();

        seven_right = childAt.getChildAt(childCount - 7).getRight();

        float center_6 = (three_right - three_left) / 2;//第二框的半徑

        //大框的中心
        position_7 = frist_right - frist_center;

        //中間間距的半徑
        position_center = (three_left - frist_right) / 2;

        position = center_6 + position_center;//表示變化的周期照宝,也是從0-1的變化的距離

        position_key = three_left - position_center;//節(jié)點(diǎn)

        eight_right = childAt.getChildAt(childCount - 8).getRight();

    }
}

這個(gè)布局也是一個(gè)關(guān)鍵的一個(gè)地方蛇受,圖片大家或者背景大家可以自己設(shè)置下

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_bg"
    android:layout_width="250dp"
    android:layout_height="50dp"
    android:background="@drawable/background_bg"
    android:gravity="center_vertical">


    <ImageView
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@+id/iv_2"
        android:id="@+id/iv_1"
        android:layout_width="19dp"
        android:layout_height="19dp"
        android:src="@drawable/test_1" />

    <ImageView
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@+id/iv_3"
        android:id="@+id/iv_2"
        android:layout_width="19dp"
        android:layout_height="19dp"
        android:src="@drawable/test_2" />

    <ImageView
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@+id/iv_4"
        android:id="@+id/iv_3"
        android:layout_width="19dp"
        android:layout_height="19dp"
        android:src="@drawable/test_3" />

    <ImageView
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@+id/iv_5"
        android:id="@+id/iv_4"
        android:layout_width="19dp"
        android:layout_height="19dp"
        android:src="@drawable/test_4" />

    <ImageView
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@+id/iv_6"
        android:id="@+id/iv_5"
        android:layout_width="19dp"
        android:layout_height="19dp"
        android:src="@drawable/test_5" />

    <ImageView
        android:layout_centerVertical="true"
        android:layout_marginLeft="12dp"
        android:layout_toRightOf="@+id/iv_7"
        android:id="@+id/iv_6"
        android:layout_width="19dp"
        android:layout_height="19dp"
        android:src="@drawable/test_6" />

    <ImageView
        android:layout_centerVertical="true"
        android:id="@+id/iv_7"
        android:layout_marginLeft="5dp"
        android:layout_width="38dp"
        android:layout_height="38dp"
        android:src="@drawable/test_bg" />
    <ImageView
        android:scaleType="fitCenter"
        android:layout_marginLeft="10dp"
        android:layout_centerVertical="true"
        android:id="@+id/iv_8"
        android:layout_width="28dp"
        android:layout_height="28dp"
        />

</RelativeLayout>

這個(gè)地方就是顯現(xiàn)自定義的地方

import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.graphics.Typeface;
import android.net.Uri;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.view.Display;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;

import com.facebook.common.util.UriUtil;
import com.facebook.drawee.backends.pipeline.Fresco;
import com.facebook.drawee.interfaces.DraweeController;
import com.facebook.drawee.view.SimpleDraweeView;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class WarmTipsDialog implements MyFrameLayout.TransterListener {
    private Context mContext;
    private Dialog dialog;
    private Display display;
    private RelativeLayout lLayout_bg;
    private FrameLayout rl_bg;
    private View view;
    private ImageView delete;
    private TextView mTv;
    private MyFrameLayout mSBV;

    public WarmTipsDialog(Context context) {

        this.mContext = context;
        WindowManager windowManager = (WindowManager) mContext
                .getSystemService(Context.WINDOW_SERVICE);
        display = windowManager.getDefaultDisplay();
    }

    public WarmTipsDialog builder() {

        // 獲取Dialog布局
        view = LayoutInflater.from(mContext).inflate(
                R.layout.view_warm_tip_layout, null);

        lLayout_bg = (RelativeLayout) view.findViewById(R.id.ll_bg);
        delete = (ImageView) view.findViewById(R.id.iv_delete);
        visibli(view);
        mSBV = (MyFrameLayout) view.findViewById(R.id.slid_block);
        mSBV.setLister(this);
        mTv = (TextView) view.findViewById(R.id.tv_title);
//        // 定義Dialog布局和參數(shù)
        dialog = new Dialog(mContext, R.style.AlertDialogStyle);
        dialog.setContentView(view);

        // 調(diào)整dialog背景大小
        lLayout_bg.setLayoutParams(new FrameLayout.LayoutParams((int) (display
                .getWidth() * 0.9), LinearLayout.LayoutParams.WRAP_CONTENT));

        delete.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                dismissDialog();
            }
        });
        dialog.setCanceledOnTouchOutside(false);
        return this;
    }

    /**
     * 顯示dialog
     */
    public void showDialog(){
        if(mContext != null && !((Activity)mContext).isFinishing() && dialog != null){
            if(!dialog.isShowing()){
                dialog.show();
            }
        }
    }

    /**
     * 取消dialog
     */
    public void dismissDialog(){
        dialog.dismiss();
    }

    @Override
    public void moveKey(int key) {
        if (key == 0){
            mTv.setClickable(true);
            mTv.setFocusable(true);
            mTv.setText("驗(yàn)證碼錯(cuò)誤,點(diǎn)擊這里重試");
            mTv.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    mSBV.reset();
                }
            });
        }else {
            Toast.makeText(mContext, "我是" + key + "被點(diǎn)擊了", Toast.LENGTH_SHORT).show();
        }
    }
}

對(duì)話框布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_bg"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#fff"
    android:orientation="vertical">
        <ImageView
            android:id="@+id/iv_delete"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:layout_alignParentRight="true"
            android:layout_marginRight="15dp"
            android:layout_marginTop="15dp"
            android:src="@drawable/x" />

        <TextView
            android:id="@+id/tv_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/iv_delete"
            android:layout_marginTop="50dp"
            android:gravity="center_horizontal"
            android:text="@string/tv_title"
            android:textColor="#333333"
            android:textSize="20dp" />


        <MyFrameLayout
            android:id="@+id/slid_block"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tv_title"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="70dp"
            android:layout_marginTop="55dp" />


</RelativeLayout>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末厕鹃,一起剝皮案震驚了整個(gè)濱河市兢仰,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌剂碴,老刑警劉巖把将,帶你破解...
    沈念sama閱讀 221,695評(píng)論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異忆矛,居然都是意外死亡察蹲,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,569評(píng)論 3 399
  • 文/潘曉璐 我一進(jìn)店門催训,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)洽议,“玉大人,你說(shuō)我怎么就攤上這事瞳腌〗柿澹” “怎么了镜雨?”我有些...
    開(kāi)封第一講書人閱讀 168,130評(píng)論 0 360
  • 文/不壞的土叔 我叫張陵嫂侍,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我荚坞,道長(zhǎng)挑宠,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書人閱讀 59,648評(píng)論 1 297
  • 正文 為了忘掉前任颓影,我火速辦了婚禮各淀,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘诡挂。我一直安慰自己碎浇,他們只是感情好临谱,可當(dāng)我...
    茶點(diǎn)故事閱讀 68,655評(píng)論 6 397
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著奴璃,像睡著了一般悉默。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上苟穆,一...
    開(kāi)封第一講書人閱讀 52,268評(píng)論 1 309
  • 那天抄课,我揣著相機(jī)與錄音,去河邊找鬼雳旅。 笑死跟磨,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的攒盈。 我是一名探鬼主播抵拘,決...
    沈念sama閱讀 40,835評(píng)論 3 421
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼型豁!你這毒婦竟也來(lái)了仑濒?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 39,740評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤偷遗,失蹤者是張志新(化名)和其女友劉穎墩瞳,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體氏豌,經(jīng)...
    沈念sama閱讀 46,286評(píng)論 1 318
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡喉酌,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,375評(píng)論 3 340
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了泵喘。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片泪电。...
    茶點(diǎn)故事閱讀 40,505評(píng)論 1 352
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖纪铺,靈堂內(nèi)的尸體忽然破棺而出相速,到底是詐尸還是另有隱情,我是刑警寧澤鲜锚,帶...
    沈念sama閱讀 36,185評(píng)論 5 350
  • 正文 年R本政府宣布突诬,位于F島的核電站,受9級(jí)特大地震影響芜繁,放射性物質(zhì)發(fā)生泄漏旺隙。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,873評(píng)論 3 333
  • 文/蒙蒙 一骏令、第九天 我趴在偏房一處隱蔽的房頂上張望蔬捷。 院中可真熱鬧,春花似錦榔袋、人聲如沸周拐。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 32,357評(píng)論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)妥粟。三九已至高蜂,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間罕容,已是汗流浹背备恤。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 33,466評(píng)論 1 272
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留锦秒,地道東北人露泊。 一個(gè)月前我還...
    沈念sama閱讀 48,921評(píng)論 3 376
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像旅择,于是被迫代替她去往敵國(guó)和親惭笑。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,515評(píng)論 2 359

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

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 172,288評(píng)論 25 707
  • 回想起來(lái) 生真,歲月悠悠沉噩。 我要感激的人太多…… 想我還是個(gè)窮酸小子的時(shí)候,遇到過(guò)一個(gè)拾破爛兒的老頭兒柱蟀。我穿的很...
    我是憨逗又憨又逗閱讀 217評(píng)論 0 0
  • 你在家里工作长已, 和父母一起生活畜眨。 我在外地工作, 和夢(mèng)想一起生活术瓮。 就這樣康聂, 你收獲了親情, 我憧憬了夢(mèng)想胞四。 親情...
    小劇在成長(zhǎng)閱讀 232評(píng)論 2 5
  • 今天群里突然討論起頭發(fā)來(lái)恬汁,我第一反應(yīng)就是染發(fā)。 人生中第一次染發(fā)就染了很淺的顏色辜伟,雖然發(fā)質(zhì)被傷的像枯草了氓侧,但這...
    jean_en閱讀 342評(píng)論 0 0
  • 般若波羅蜜多心經(jīng) 齊豫 上周日去了泉州的開(kāi)元寺,剛巧碰到寺院在做關(guān)于孝悌的一場(chǎng)佛法活動(dòng)游昼。大雄寶殿里頭幾乎所有的和尚...
    jerrybirdy閱讀 451評(píng)論 0 0