干貨系列之實(shí)現(xiàn)City Guides的動(dòng)畫(huà)效果(二)

點(diǎn)此下載源碼下載:源碼(會(huì)持續(xù)更新牲证,歡迎star军洼。保證炫酷,童叟無(wú)欺I醯)

city guides插圖.jpg

數(shù)字動(dòng)態(tài)變化的動(dòng)畫(huà)效果

本篇文章要實(shí)現(xiàn)的動(dòng)畫(huà)效果如下大诸。

ZFCityGuides-stats.gif

由于生成gif幀動(dòng)畫(huà)時(shí)間較短的問(wèn)題,有部分動(dòng)畫(huà)效果并沒(méi)有顯示體現(xiàn)出來(lái)贯卦。小編解析一下上面的gif動(dòng)畫(huà)效果资柔。

本篇文章最后有最終實(shí)現(xiàn)的效果圖檬姥。

解析動(dòng)畫(huà)
  1. 從上一個(gè)viewController進(jìn)入到StatsViewController源织,是一個(gè)動(dòng)畫(huà)轉(zhuǎn)場(chǎng)柳沙。(本篇文章不詳細(xì)講解)

  2. 顯示當(dāng)前視圖威始,視圖是從底部滑入型诚。在滑入進(jìn)入的過(guò)程中齐遵,視圖上的部分子視圖動(dòng)畫(huà)的變化(如:UILabel上的數(shù)字娩嚼,CAGradientLayer的顏色等)爹橱。

  3. 當(dāng)前視圖加載完畢庶灿,滾動(dòng)視圖纵搁。在滾動(dòng)過(guò)程中,有的視圖同時(shí)向兩側(cè)移動(dòng)逐漸消失或出現(xiàn)往踢,有的視圖向左逐漸移動(dòng)消失或出現(xiàn)腾誉,而有的視圖向右移動(dòng)逐漸消失或出現(xiàn)。

  4. 子視圖向左或者向右移動(dòng)的過(guò)程中菲语,部分子視圖動(dòng)態(tài)的變化妄辩。

設(shè)計(jì)思路

針對(duì)上面的每一步進(jìn)行逐步設(shè)計(jì)實(shí)現(xiàn)。

  1. 參見(jiàn)源碼山上,不詳細(xì)介紹眼耀。
  2. StatsViewController上是由一個(gè)UIScrollView,從底部滑入的動(dòng)畫(huà)佩憾。
    CGRect offsetFrame = self.view.frame;
    offsetFrame.origin.y = self.view.frame.size.height;
    
    CGRect frame = self.view.frame;
    UIScrollView *scrollView = [UIScrollView new];
    frame.origin.y = CGRectGetMaxY(self.navigationBarView.frame) + 10;
    scrollView.delegate = self;
    [self.view addSubview:scrollView];
    
    
    scrollView.frame = offsetFrame;
    [UIView animateWithDuration:1.5 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
        
        scrollView.frame = frame;
    } completion:^(BOOL finished) {
        
    }];

如何實(shí)現(xiàn)UILabel數(shù)字的動(dòng)態(tài)變化呢哮伟?

開(kāi)源項(xiàng)目pop動(dòng)畫(huà)幫我們實(shí)現(xiàn)了干花,小編來(lái)講解如何實(shí)現(xiàn)吧。封裝實(shí)現(xiàn)動(dòng)畫(huà)的UILabel的方法楞黄。

#pragma mark - animationLabel method
-(void)animatedForLabel:(UILabel *)label forKey:(NSString *)key fromValue:(CGFloat)fromValue toValue:(CGFloat) toValue decimal:(BOOL)decimal{
    
    POPAnimatableProperty *prop = [POPAnimatableProperty propertyWithName:key initializer:^(POPMutableAnimatableProperty *prop) {        
        prop.readBlock = ^(id obj, CGFloat values[]) {         
        };
        prop.writeBlock = ^(id obj, const CGFloat values[]) {
            
            NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
            formatter.numberStyle = NSNumberFormatterDecimalStyle;
            NSString *string = nil;
            //是否帶有小數(shù)點(diǎn)
            if (decimal) {
                string = [NSString stringWithFormat:@"%.1f",values[0]];
            }
            else{
                string = [formatter stringFromNumber:[NSNumber numberWithInt:(int)values[0]]];
            }
            
            if ([key isEqualToString:@"first"]) {
                int number = (int)roundf(values[0]);
                for (int i = 0; i < number; i++) {
                    UIButton *button = [self.firstRainDropIcons objectAtIndex:i];
                    button.enabled = fromValue > toValue ? NO : YES;
                }
            }
            else if ([key isEqualToString:@"second"]){
                int number = (int)roundf(values[0]);
                for (int i = 0; i < number; i++) {
                    UIButton *button = [self.secondRainDropIcons objectAtIndex:i];
                    button.enabled = fromValue > toValue ? NO : YES;
                }
            }

            if (fromValue > toValue) {
                label.alpha = 0.5;
            }
            else{
                label.alpha = 1.0;
            }
            
            label.text = string;
        };
        
//            prop.threshold = 0.1;
    }];
    
    POPBasicAnimation *anBasic = [POPBasicAnimation easeInEaseOutAnimation];   //動(dòng)畫(huà)屬性
    anBasic.property = prop;    //自定義屬性
    anBasic.fromValue = @(fromValue);   //從0開(kāi)始
    anBasic.toValue = @(toValue);  //
    anBasic.duration = 1.5;    //持續(xù)時(shí)間
    anBasic.beginTime = CACurrentMediaTime() + 0.1;    //延遲0.1秒開(kāi)始
    [label pop_addAnimation:anBasic forKey:key];
}

創(chuàng)建UILabel加入到當(dāng)前視圖中池凄,實(shí)現(xiàn)數(shù)值由0到238874變化。

    UILabel *animationLabel =  [UILabel new];    
    animationLabel.text = @"0";
    animationLabel.textAlignment = NSTextAlignmentCenter;
    animationLabel.font = [UIFont fontWithName:TitleFontName size:65.0];
    animationLabel.textColor = kTextlightGrayColor;
    animationLabel.frame = CGRectMake(0, 200, 300, 90);
    [self.view addSubview:animationLabel];
    
    [self animatedForLabel:animationLabel forKey:@"animation" fromValue:0 toValue: 238874 decimal:NO];
digitAnimation.gif

3.自定義封裝UIScrollView上的子視圖鬼廓。(詳細(xì)講解這一部分的思路)

小編的設(shè)計(jì)思路是:每一行是一個(gè)ZFSliderAnimationView肿仑。ZFSliderAnimationView中,有一個(gè)或多個(gè)ZFSliderAnimationItem組成碎税。

ZFSliderAnimationItem的定義尤慰,如下:

@interface ZFSliderAnimationItem : NSObject

@property (nonatomic,strong) NSString *headerTitle; //標(biāo)題

@property (nonatomic,strong) NSString *content; //中間內(nèi)容

@property (nonatomic,strong) NSString *footerTitle;//底部標(biāo)題

@property (nonatomic,strong) NSString *detailContent;//詳細(xì)內(nèi)容

@property (nonatomic,strong) UIColor *itemBackgroundColor;//背景顏色

@property (nonatomic,assign) BOOL showDetail;//是否顯示詳細(xì)按鈕

@property (nonatomic,assign) BOOL showAnimated;//是否動(dòng)畫(huà)

@end

創(chuàng)建ZFSliderAnimationView可以定義多個(gè)類(lèi)型如下:

typedef NS_ENUM(NSInteger, ZFSliderStyle) {

    //一般類(lèi)型 包括headTitle content footer detail
    ZFSliderStyleNormal,
    //可自定義單個(gè)視圖
    ZFSliderStyleView,
    //多個(gè)normal組成
    ZFSliderStyleMultiple,
    //多個(gè)customView組成
    ZFSliderStyleMultipleView,
};

對(duì)應(yīng)復(fù)雜的自定義視圖,作為單獨(dú)一個(gè)View傳人到ZFSliderAnimationView中雷蹂。在本篇文章中伟端,ZFRainDropView和ZFGradientView都是自定義的視圖傳人到ZFSliderAnimationView中。這樣的好處避免ZFSliderAnimationView類(lèi)代碼顯得特別的臃腫匪煌,而且耦合性降低责蝠。只需要?jiǎng)?chuàng)建自己所期望的UIView傳人即可。

ZFSliderAnimationView根據(jù)style初始化:

-(void)initSubViewsWithStyle:(ZFSliderStyle)style{
    
    switch (style) {
            
        case ZFSliderStyleNormal:
            if (self.items) {
                [self addItemViewOnContentView:self.items[0] withCustomView:nil];
            }
    
        break;
        case ZFSliderStyleView:
            if (self.customViews && self.items) {
                UIView *customView = [UIView new];
                if (self.customViews.count > 0) {
                    customView = self.customViews[0];
                }
                
                [self addItemViewOnContentView:self.items[0] withCustomView:customView];
            }
            
            break;
        case ZFSliderStyleMultiple:
        {
            NSMutableArray *itemWidthArray = [self countWidthForItems:self.items];
            
            CGFloat orignX = 0;
            for (int i =0 ; i < self.items.count; i++) {
                
                orignX += i ?  [itemWidthArray[i -1] floatValue] + gapWidth : gapWidth;
                [self addItemOnContentViewAtIndex:i animationItem:self.items[i] orignX:orignX withItemWidth:[itemWidthArray[i] floatValue]];
                
            }
        }
        break;
        default:
            break;
    }
    
}

在滾動(dòng)UIScrollView時(shí)萎庭,每個(gè)item是向左還是向右移動(dòng)霜医。ZFSliderAnimationView的動(dòng)畫(huà)類(lèi)型定義如下:

typedef NS_ENUM(NSInteger, ZFSliderItemAnimation) {
    
    ZFSliderItemAnimationLeft,//向左移動(dòng)
    ZFSliderItemAnimationRight,//向右移動(dòng)
    ZFSliderItemAnimationBoth//分別向兩側(cè)移動(dòng)

};
@property (nonatomic,assign) ZFSliderItemAnimation animation;

然后根據(jù)ZFSliderItemAnimation的值實(shí)現(xiàn)每個(gè)item移動(dòng):

-(void)updateAnimationView:(CGFloat)percent animated:(BOOL)animated{

    if (self.animation == ZFSliderItemAnimationLeft) {
        //動(dòng)態(tài)變化子視圖內(nèi)容 第4步
        [self showItemAnimation:percent animated:animated];
        
        if (percent < 0) {
            percent = 0;
        }
        if (percent >1) {
            percent =1;
        }
        
        percent = percent * 0.5;
        UIView *contentView = self.subviews[0];
        CGRect frame = contentView.frame;
        //向左移動(dòng)
        frame.origin.x = (gapWidth - contentView.frame.size.width * percent);
        contentView.frame = frame;
    }
    else if (self.animation == ZFSliderItemAnimationRight){
        //動(dòng)態(tài)變化子視圖內(nèi)容 第4步
        [self showItemAnimation:percent animated:animated];
        
        if (percent < 0) {
            percent = 0;
        }
        if (percent >1) {
            percent =1;
        }
        
        percent = percent * 0.5;
        UIView *contentView = self.subviews[0];
        CGRect frame = contentView.frame;
        //向右移動(dòng)
        frame.origin.x = (gapWidth + contentView.frame.size.width * percent);
        contentView.frame = frame;
    }
    else if (self.animation == ZFSliderItemAnimationBoth){

        //動(dòng)態(tài)變化子視圖內(nèi)容 第4步
        [self showItemAnimation:percent animated:animated];
        NSAssert(self.items.count > 1, @"Count can't less than two");
        
        //此處只演示2個(gè)items
        
        if (percent < 0) {
            percent = 0;
        }
        if (percent >1) {
            percent =1;
        }

        percent = percent * 0.5;
        CGRect leftFrame = self.subviews[0].frame;
        CGRect rightFrame = self.subviews[1].frame;
        //左側(cè)item 向左移動(dòng)
        leftFrame.origin.x = (gapWidth - self.subviews[0].frame.size.width * percent);
        self.subviews[0].frame = leftFrame;
        //右側(cè)item 向右移動(dòng)
        rightFrame.origin.x = (self.subviews[0].frame.size.width  + gapWidth *2 + self.subviews[1].frame.size.width * percent);
        self.subviews[1].frame = rightFrame;
    }
    //改變透明度
    self.alpha = 1 - percent *2;
}

在StatsViewController中,滾動(dòng)UIScrollView由UIScrollView的頂部和底部的偏移量確定當(dāng)前哪個(gè)視圖移動(dòng)的百分比擎椰。

#pragma mark - UIScrollViewDelegate

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

    
    for (UIView *subView in _subViewsArray) {
        
        BOOL bContainedTopView = CGRectContainsPoint(subView.frame,scrollView.contentOffset);
        CGPoint point = scrollView.contentOffset;
        point.y += (self.view.frame.size.height - CGRectGetMaxY(self.navigationBarView.frame) -10);
        
        
        BOOL bContainedBottomView = CGRectContainsPoint(subView.frame,point);

        
        ZFSliderAnimationView *sliderView = (ZFSliderAnimationView *)subView;

        UIView *middleView = nil;
        
        //自定義的view
        if (sliderView.style == ZFSliderStyleView || sliderView.style == ZFSliderStyleMultipleView) {
            middleView = sliderView.customView;
        }
        else{
            
            middleView = sliderView.contentLabel;
        }
        //頂部視圖的移動(dòng)百分比
        if (bContainedTopView) {
            
            CGFloat percent = (scrollView.contentOffset.y - subView.frame.origin.y - middleView.frame.origin.y) /middleView.frame.size.height;
            //更新動(dòng)畫(huà)視圖
            [sliderView updateAnimationView:percent animated:YES];
            continue;


        }
        //底部視圖的移動(dòng)百分比
        else if (bContainedBottomView){

            CGFloat percent = (point.y - subView.frame.origin.y - middleView.frame.origin.y) /middleView.frame.size.height;
            //更新動(dòng)畫(huà)視圖
            [sliderView updateAnimationView:1- percent animated:YES];
            continue;

        }
        else{
            
            //不更新動(dòng)畫(huà)視圖
            [sliderView updateAnimationView:0.0 animated:NO];
            
        }
       
    }
}

4.動(dòng)態(tài)變化子視圖內(nèi)容支子。

-(void)showItemAnimation:(CGFloat)percent animated:(BOOL)animated{
    
    if (percent > 0 && percent < 1) {
        
        for (int i = 0; i < self.subItemViews.count; i++) {
            
            NSArray *subViews = ((UIView *)self.subItemViews[i]).subviews;

            
            //ZFRainDropView 實(shí)現(xiàn)動(dòng)畫(huà)
            if ([[subViews[1] class] isSubclassOfClass:[ZFRainDropView class]]) {
                
                ZFRainDropView *rainDropView = subViews[1];
                
                if (!rainDropView.digitAnimated) {
                    return;
                }
                [rainDropView increaseNumber:NO animated:animated];
                rainDropView.digitAnimated = NO;
                return;
            }
            //ZFGradientView 實(shí)現(xiàn)動(dòng)畫(huà)
            else if([[subViews[1] class] isSubclassOfClass:[ZFGradientView class]]){
                
                ZFGradientView *gradientView = subViews[1];
                
                if (!gradientView.digitAnimated) {
                    return;
                }
                [gradientView increaseNumber:NO animated:animated];
                gradientView.digitAnimated = NO;
                return;
            }
            
            for (UIView *subView in subViews) {
                
                if ([subView isKindOfClass:[UILabel class]]) {
                    
                    //無(wú)法用key 區(qū)分创肥,根據(jù)子視圖上的UILabel實(shí)現(xiàn)
                    ZFSliderAnimationItem *item = self.items[i];

                    if (!item.showAnimated) {
                        return;
                    }
                    if ([item.content rangeOfString:@"."].length > 0) {
                        [self animatedForLabel:(UILabel *)subView forKey:self.animationKey fromValue:[item.content floatValue]  toValue:0 decimal:YES];
                    }
                    else{
                        [self animatedForLabel:(UILabel *)subView forKey:self.animationKey fromValue:[item.content floatValue]  toValue:0 decimal:NO];
                    }
                    item.showAnimated = NO;
                }
            }
        }
    }
    else if(percent < 0){
        for (int i = 0; i < self.subItemViews.count; i++) {
            
            NSArray *subViews = ((UIView *)self.subItemViews[i]).subviews;
            
            if ([[subViews[1] class] isSubclassOfClass:[ZFRainDropView class]]) {
                //ZFRainDropView 實(shí)現(xiàn)動(dòng)畫(huà)
                ZFRainDropView *rainDropView = subViews[1];
                
                if (!rainDropView.digitAnimated) {
                    
                    [rainDropView increaseNumber:YES animated:animated];
                    rainDropView.digitAnimated = YES;
                }
                
                return;
            }
            else if([[subViews[1] class] isSubclassOfClass:[ZFGradientView class]]){
                
                ZFGradientView *gradientView = subViews[1];
                
                if (!gradientView.digitAnimated) {
                    [gradientView increaseNumber:YES animated:animated];
                    gradientView.digitAnimated = YES;
                }
                return;
            }
            for (UIView *subView in subViews) {
                
                if ([subView isKindOfClass:[UILabel class]]) {
                    
                    UILabel *contentLabel = (UILabel *)subView;
                    //無(wú)法用key 區(qū)分达舒,根據(jù)子視圖上的UILabel實(shí)現(xiàn)
                    ZFSliderAnimationItem *item = self.items[i];

                    if (!item.showAnimated) {
                        if ([item.content rangeOfString:@"."].length > 0) {
                            
                            [self animatedForLabel:contentLabel forKey:self.animationKey fromValue:0 toValue:[item.content floatValue] decimal:YES];
                        }
                        else{
                            [self animatedForLabel:contentLabel forKey:self.animationKey fromValue:0 toValue:[item.content floatValue] decimal:NO];
                        }
                        item.showAnimated = YES;

                    }               
                }
            }
        } 
    }
    else if(percent == 0){
        
        if (!animated) {
            return;
        }
        for (int i = 0; i < self.subItemViews.count; i++) {
            
            NSArray *subViews = ((UIView *)self.subItemViews[i]).subviews;
            if ([[subViews[1] class] isSubclassOfClass:[ZFRainDropView class]]) {
                //ZFRainDropView 實(shí)現(xiàn)動(dòng)畫(huà)
                ZFRainDropView *rainDropView = subViews[1];
                
                [rainDropView increaseNumber:NO animated:animated];
                return;
            }
            else if([[subViews[1] class] isSubclassOfClass:[ZFGradientView class]]){
                
                ZFGradientView *gradientView = subViews[1];
                
                [gradientView increaseNumber:NO animated:animated];
                return;
            }
            
            for (UIView *subView in subViews) {
                
                if ([subView isKindOfClass:[UILabel class]]) {
                    
                    //無(wú)法用key 區(qū)分,根據(jù)子視圖上的UILabel實(shí)現(xiàn)
                    ZFSliderAnimationItem *item = self.items[i];

                    if ([item.content rangeOfString:@"."].length > 0) {
                        [self animatedForLabel:(UILabel *)subView forKey:self.animationKey fromValue:0  toValue:[item.content floatValue] decimal:YES];
                    }
                    else{
                        [self animatedForLabel:(UILabel *)subView forKey:self.animationKey fromValue:0  toValue:[item.content floatValue] decimal:NO];
                    }
             
                }
            }
        }
    }
   
}

最終效果圖:

ZFCityGuides-stats1.gif

結(jié)束語(yǔ)

在本篇演示的內(nèi)容中叹侄,還一部分是關(guān)于漸變顏色的取值巩搏。等分插值取值,動(dòng)態(tài)實(shí)現(xiàn)顏色的變化趾代。詳細(xì)的參考源碼中的ZFGradientView贯底。

擴(kuò)展閱讀:

干貨系列之實(shí)現(xiàn)City Guides的動(dòng)畫(huà)效果(一)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市撒强,隨后出現(xiàn)的幾起案子禽捆,更是在濱河造成了極大的恐慌,老刑警劉巖飘哨,帶你破解...
    沈念sama閱讀 218,755評(píng)論 6 507
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件胚想,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡芽隆,警方通過(guò)查閱死者的電腦和手機(jī)浊服,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,305評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén)统屈,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人牙躺,你說(shuō)我怎么就攤上這事愁憔。” “怎么了孽拷?”我有些...
    開(kāi)封第一講書(shū)人閱讀 165,138評(píng)論 0 355
  • 文/不壞的土叔 我叫張陵吨掌,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我脓恕,道長(zhǎng)思犁,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,791評(píng)論 1 295
  • 正文 為了忘掉前任进肯,我火速辦了婚禮激蹲,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘江掩。我一直安慰自己学辱,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,794評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布环形。 她就那樣靜靜地躺著策泣,像睡著了一般。 火紅的嫁衣襯著肌膚如雪抬吟。 梳的紋絲不亂的頭發(fā)上萨咕,一...
    開(kāi)封第一講書(shū)人閱讀 51,631評(píng)論 1 305
  • 那天,我揣著相機(jī)與錄音火本,去河邊找鬼危队。 笑死,一個(gè)胖子當(dāng)著我的面吹牛钙畔,可吹牛的內(nèi)容都是我干的茫陆。 我是一名探鬼主播,決...
    沈念sama閱讀 40,362評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼擎析,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼簿盅!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起揍魂,我...
    開(kāi)封第一講書(shū)人閱讀 39,264評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤桨醋,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后现斋,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體喜最,經(jīng)...
    沈念sama閱讀 45,724評(píng)論 1 315
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,900評(píng)論 3 336
  • 正文 我和宋清朗相戀三年步责,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了返顺。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片禀苦。...
    茶點(diǎn)故事閱讀 40,040評(píng)論 1 350
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖遂鹊,靈堂內(nèi)的尸體忽然破棺而出振乏,到底是詐尸還是另有隱情,我是刑警寧澤秉扑,帶...
    沈念sama閱讀 35,742評(píng)論 5 346
  • 正文 年R本政府宣布慧邮,位于F島的核電站,受9級(jí)特大地震影響舟陆,放射性物質(zhì)發(fā)生泄漏误澳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,364評(píng)論 3 330
  • 文/蒙蒙 一秦躯、第九天 我趴在偏房一處隱蔽的房頂上張望忆谓。 院中可真熱鬧,春花似錦踱承、人聲如沸倡缠。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,944評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)昙沦。三九已至,卻和暖如春载荔,著一層夾襖步出監(jiān)牢的瞬間盾饮,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,060評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工懒熙, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留丘损,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,247評(píng)論 3 371
  • 正文 我出身青樓煌珊,卻偏偏與公主長(zhǎng)得像号俐,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子定庵,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,979評(píng)論 2 355

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

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)、插件踪危、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,105評(píng)論 4 62
  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 172,162評(píng)論 25 707
  • 青澀退卻贞远,未沉世故 三十歲畴博,是人生一道風(fēng)景 01 三十歲了,朋友間來(lái)往沒(méi)有以前那么頻繁蓝仲。 偶爾邀...
    千江you月閱讀 310評(píng)論 0 1
  • 看了一場(chǎng)看不懂的電影俱病,四處張望官疲,發(fā)現(xiàn)別人專(zhuān)注而陶醉,才忽然明白孤獨(dú)是什么亮隙。 ...
    師露閱讀 247評(píng)論 1 0
  • 有沒(méi)有一個(gè)午后溢吻,你遇見(jiàn)一片陽(yáng)光维费,讓你忘了以前種種不公。 今天天氣很好促王,想起與烏鎮(zhèn)的相遇犀盟,寫(xiě)一篇遲到的記吧。 那天蝇狼,...
    南風(fēng)兮閱讀 1,368評(píng)論 4 2