iOS 動(dòng)畫(huà) —— 活動(dòng)加載器

平常我們?cè)诩虞d數(shù)據(jù)的時(shí)候通常用UIActivityIndicatorView, 但是有時(shí)產(chǎn)品想改改樣式盟步,在此剛好看到幾款動(dòng)畫(huà)興許可以當(dāng)做活動(dòng)加載器,特此學(xué)習(xí)下纠屋。

學(xué)習(xí)來(lái)源:DTIActivityIndicatorView-Swift掸冤,在此用Objective-C模仿一下。

一浆洗、圈圈的跳動(dòng)
pulse
#import "PulseView.h"

@interface PulseView ()

@property (nonatomic, strong) UIView *pulseView;

@end

@implementation PulseView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        
        CGSize pulseSize = CGRectInset(frame, 2.0, 2.0).size;
        _pulseView = [[UIView alloc] init];
        _pulseView.backgroundColor = [UIColor whiteColor];
        _pulseView.frame = CGRectMake(0.0, 0.0, pulseSize.width, pulseSize.height);
        _pulseView.layer.cornerRadius  = MIN(pulseSize.width,pulseSize.height)/2.0;
        [self addSubview:_pulseView];
        
    }
    return self;
}

- (void)startAnimating {
    
    CAKeyframeAnimation *scaleAnimation =  [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
    scaleAnimation.values = @[@0,@1];
    
    CAKeyframeAnimation *opacityAnimation =  [CAKeyframeAnimation animationWithKeyPath:@"opacity"];
    opacityAnimation.values = @[@1,@0];
    
    CAAnimationGroup *group = [CAAnimationGroup animation];
    group.duration = 1.0;
    group.repeatCount = MAXFLOAT;
    group.removedOnCompletion = NO;
    group.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    group.animations = @[scaleAnimation, opacityAnimation];
    [self.pulseView.layer addAnimation:group forKey:@"Animation_Pulse"];
    
}

@end
二、變換的跳動(dòng)
doublw
#import "DoubleBounceView.h"

@interface DoubleBounceView ()

@property (nonatomic, strong) UIView *bounceOutView;
@property (nonatomic, strong) UIView *bounceInView;

@end

@implementation DoubleBounceView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        
        CGSize size = CGRectInset(frame, 2.0, 2.0).size;
        _bounceInView = [self makeBounceViewWithSize:size];
        _bounceOutView = [self makeBounceViewWithSize:size];
        [self addSubview:_bounceOutView];
        [self addSubview:_bounceInView];
    }
    return self;
}

- (UIView *)makeBounceViewWithSize:(CGSize)size {
    UIView *view = [[UIView alloc] init];
    view.frame = CGRectMake(0, 0, size.width, size.height);
    view.backgroundColor = [UIColor whiteColor];
    view.layer.cornerRadius = MIN(size.width,size.height)/2.0;
    view.layer.opacity = 0.6;
    return view;
}

- (void)startAnimating {
    
    CAKeyframeAnimation *scaleInAnimation =  [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
    scaleInAnimation.values = @[@0, @1, @0];
    scaleInAnimation.removedOnCompletion = NO;
    scaleInAnimation.repeatCount = CGFLOAT_MAX;
    scaleInAnimation.duration = 2;
    scaleInAnimation.timingFunctions = @[
                                  [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                  [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                  [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
                                  ];

    
    CAKeyframeAnimation *scaleOutAnimation =  [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
    scaleOutAnimation.values = @[@1, @0, @1];
    scaleOutAnimation.removedOnCompletion = NO;
    scaleOutAnimation.repeatCount = MAXFLOAT;
    scaleOutAnimation.duration = 2;
    scaleOutAnimation.timingFunctions = @[
                                         [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                         [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                         [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
           
                                         ];
    [self.bounceOutView.layer addAnimation:scaleOutAnimation forKey:@"scaleOutAnimation"];
    [self.bounceInView.layer addAnimation:scaleInAnimation forKey:@"scaleInAnimation"];
 
}


@end

三集峦、琴塊的變化
wave.gif
#import "WaveView.h"

static const NSInteger kRectCount = 5;
static const CGFloat kSpaceBetweenRect = 3.0;

@interface WaveView ()

@property (nonatomic, strong) UIView *rectView;

@end

@implementation WaveView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
    
        _rectView = [[UIView alloc] initWithFrame: frame];
        [self addSubview:_rectView];
        
        CGFloat rectWidth = (frame.size.width - kSpaceBetweenRect *(kRectCount-1)) / kRectCount;
        for (NSInteger i = 0; i < kRectCount; ++i) {
            CALayer *layer = [CALayer layer];
            layer.transform =  CATransform3DMakeScale(1.0, 0.4, 0.0);
            layer.backgroundColor = [UIColor whiteColor].CGColor;
            layer.frame = CGRectMake(i * (rectWidth + kSpaceBetweenRect), 0, rectWidth, frame.size.height);
            [_rectView.layer addSublayer:layer];
        }
        
    }
    return self;
}

- (void)startAnimating {
    
    for (NSInteger i = 0; i < kRectCount; ++i) {
        
        CALayer *layer = self.rectView.layer.sublayers[i];
        
        CAKeyframeAnimation *animation =  [CAKeyframeAnimation animationWithKeyPath:@"transform"];
        animation.removedOnCompletion = NO;
        animation.repeatCount = MAXFLOAT;
        animation.duration = 1.2;
        
        animation.beginTime = CACurrentMediaTime() + i * 0.1;
        animation.keyTimes = @[@0.0,@0.2, @0.4,@1.0];
        animation.timingFunctions = @[
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
                                      ];
        animation.values = @[
                             [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 0.4, 0.0)],
                             [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 1.0, 0.0)],
                             [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 0.4, 0.0)],
                             [NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 0.4, 0.0)]
                             ];
    
        [layer addAnimation:animation forKey:[NSString stringWithFormat:@"wave_animation_%lu",i]];
        
    }
   
}

@end

四伏社、方塊的旋轉(zhuǎn)
Rota.gif
#import "RotatingView.h"

@interface RotatingView ()

@property (nonatomic, strong) UIView *planeView;

@end

@implementation RotatingView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
 
        CGSize size = CGRectInset(frame, 2.0, 2.0).size;
        _planeView = [[UIView alloc] init];
        _planeView.backgroundColor = [UIColor whiteColor];
        _planeView.frame = CGRectMake(0.0, 0.0, size.width, size.height);
        [self addSubview:_planeView];
    }
    return self;
}


CATransform3D transformPlane(CGFloat perspective, CGFloat angle,
                             CGFloat x, CGFloat y, CGFloat z) {
    CATransform3D translation = CATransform3DIdentity;
    translation.m34 = perspective;
    return CATransform3DRotate(translation, angle, x, y, z);
    
}

- (void)startAnimating {
    
    CAKeyframeAnimation *animation =  [CAKeyframeAnimation animationWithKeyPath:@"transform"];
    animation.removedOnCompletion = NO;
    animation.repeatCount = MAXFLOAT;
    animation.duration = 2;
    animation.keyTimes = @[@0.0,@0.45,@0.95];
    animation.timingFunctions = @[
                                  [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                  [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                  [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
                                  ];
    animation.values = @[
                         [NSValue valueWithCATransform3D:transformPlane(1.0/120.0, 0.0, 0.0, 0.0, 0.0)],
                          [NSValue valueWithCATransform3D:transformPlane(1.0/120.0, (CGFloat)M_PI, 0.0, 1.0, 0.0)],
                          [NSValue valueWithCATransform3D:transformPlane(1.0/120.0, (CGFloat)M_PI, 0.0, 0.0, 1.0)]
                         ];
  
    [self.planeView.layer addAnimation:animation forKey:@"Animation_Plane"];
}

@end

五、二圓旋轉(zhuǎn)飛
Chasing.gif
#import "ChasingView.h"

@interface ChasingView ()

@property (nonatomic, strong) UIView *dotOneView;
@property (nonatomic, strong) UIView *dotTwoView;

@end

@implementation ChasingView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        
        self.layer.shouldRasterize = YES;
        self.backgroundColor = [UIColor lightGrayColor];
        CGFloat sizeWidth = frame.size.width * 3/5;
        _dotOneView = [self makeDotViewWithSize:CGRectMake((frame.size.width - sizeWidth)/2.0, 1.0, sizeWidth, sizeWidth)];
        _dotTwoView = [self makeDotViewWithSize:CGRectMake((frame.size.width - sizeWidth)/2.0, frame.size.height = sizeWidth, sizeWidth, sizeWidth)];
        [self addSubview:_dotOneView];
        [self addSubview:_dotTwoView];
        
    }
    return self;
}

- (UIView *)makeDotViewWithSize:(CGRect)rect {
    UIView *view = [[UIView alloc] init];
    view.frame = rect;
    view.backgroundColor = [UIColor whiteColor];
    view.layer.cornerRadius = MIN(rect.size.width,rect.size.height)/2.0;
    return view;
}

- (void)startAnimating {
    
    CABasicAnimation *ratotionAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
    ratotionAnimation.fromValue = @0;
    ratotionAnimation.toValue = @(2 * M_PI);
    ratotionAnimation.removedOnCompletion = NO;
    ratotionAnimation.repeatCount = MAXFLOAT;
    ratotionAnimation.duration = 2.0;
    ratotionAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
    [self.layer addAnimation:ratotionAnimation forKey:@"chasing_rotation"];
    
    
    CAKeyframeAnimation *scaleOneAnimation =  [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
    scaleOneAnimation.values = @[@1, @0, @1];
    scaleOneAnimation.removedOnCompletion = NO;
    scaleOneAnimation.repeatCount = CGFLOAT_MAX;
    scaleOneAnimation.duration = 2;
    scaleOneAnimation.timingFunctions = @[
                                          [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                          [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                          [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
                                          
                                          ];
    
    CAKeyframeAnimation *scaleTwoAnimation =  [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
    scaleTwoAnimation.values = @[@0, @1, @0];
    scaleTwoAnimation.removedOnCompletion = NO;
    scaleTwoAnimation.repeatCount = CGFLOAT_MAX;
    scaleTwoAnimation.duration = 2;
    scaleTwoAnimation.timingFunctions = @[
                                          [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                          [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                          [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
                                          
                                          ];
    [self.dotOneView.layer addAnimation:scaleOneAnimation forKey:@"chasing_one_scale"];
    [self.dotTwoView.layer addAnimation:scaleTwoAnimation forKey:@"chasing_two_scale"];
    
}

@end
六塔淤、三個(gè)點(diǎn)
threePoint.gif
#import "SpotifyView.h"

static const NSInteger kCircleCount = 3;

@interface SpotifyView ()

@property (nonatomic, strong) UIView *circleView;

@end

@implementation SpotifyView

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        
        _circleView = [[UIView alloc] initWithFrame: frame];
        [self addSubview:_circleView];
        
        CGFloat circleWidth = frame.size.width / (kCircleCount*2 + 1);
        CGFloat posY = (frame.size.height - circleWidth)/2;
        for (NSInteger i = 0; i < kCircleCount; ++i) {
            CALayer *layer = [CALayer layer];
            layer.backgroundColor = [UIColor whiteColor].CGColor;
            layer.cornerRadius = circleWidth/2;
            layer.frame = CGRectMake(circleWidth + i*(circleWidth*2), posY, circleWidth, circleWidth);
            [_circleView.layer addSublayer:layer];
        }
        
    }
    return self;
}

- (void)startAnimating {
    
    for (NSInteger i = 0; i < kCircleCount; ++i) {
        
        CALayer *layer = self.circleView.layer.sublayers[i];

        CAKeyframeAnimation *animation =  [CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
        animation.removedOnCompletion = NO;
        animation.repeatCount = MAXFLOAT;
        animation.duration = 1.2;
        animation.values = @[@1.0, @1.7, @1.0, @1.0];
        animation.beginTime = CACurrentMediaTime() + i * 0.2;
        animation.keyTimes = @[@0.0,@0.2, @0.4,@1.0];
        animation.timingFunctions = @[
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut],
                                      [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]
                                      ];
        
        [layer addAnimation:animation forKey:[NSString stringWithFormat:@"spotify_animation_%lu",i]];
        
    }
    
}

@end

七摘昌、網(wǎng)易刷新圈圈(額外需要圖片的)
網(wǎng)易刷新圈圈
#import "ShowView.h"

static const CGFloat kCicleEdge  = 7.0f;

@interface ShowView ()

@property (nonatomic, strong) CALayer *ballLayer;
@property (nonatomic, strong) CALayer *circleLayer;

@end

@implementation ShowView

- (instancetype)initWithFrame:(CGRect)frame {
    if ([super initWithFrame:frame]) {
        
        UIImage *ballImage = [UIImage imageNamed:@"ball"]; // size == 30 * 30
        UIImage *circleImage =  [UIImage imageNamed:@"circle"]; // size == 100 * 30
        
        _ballLayer = [CALayer layer];
        _ballLayer.frame = CGRectMake(0, 0, ballImage.size.width - kCicleEdge, ballImage.size.height - kCicleEdge);
        _ballLayer.position = CGPointMake(self.center.x, _ballLayer.position.y);
        _ballLayer.contents = (id)ballImage.CGImage;
        
        _circleLayer = [CALayer layer];
        _circleLayer.frame = CGRectMake(0, 0, circleImage.size.width, circleImage.size.height);
        _circleLayer.position = CGPointMake(self.center.x, _ballLayer.position.y - kCicleEdge);
        _circleLayer.contents = (id)circleImage.CGImage;

        [self.layer addSublayer:_ballLayer];
        [self.layer insertSublayer:_circleLayer below:_ballLayer];
    }
    return self;
}

// 增加動(dòng)畫(huà)
- (void) startAnimating  {
    // 變大
    CABasicAnimation *enlarge = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    enlarge.duration = 0.5f;
    enlarge.repeatCount = 1.0f;
    enlarge.removedOnCompletion = NO;
    enlarge.fromValue = @(0.5f);
    enlarge.toValue = @(1.0f);
    
    // 變小
    CABasicAnimation *decrease = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    decrease.duration = 0.5f;
    decrease.repeatCount = 1.0f;
    decrease.removedOnCompletion = NO;
    decrease.beginTime = 0.5f;
    decrease.fromValue = @(1.0f);
    decrease.toValue = @(0.5f);
    
    // 位置
    CABasicAnimation *position = [CABasicAnimation animationWithKeyPath:@"position"];
    position.duration = 1.0f;
    position.repeatCount = MAXFLOAT;
    position.fromValue =[NSValue valueWithCGPoint:self.circleLayer.position];
    position.toValue = [NSValue valueWithCGPoint:CGPointMake(self.circleLayer.position.x, self.circleLayer.position.y + self.circleLayer.frame.size.height)];
    
    // 將三組動(dòng)畫(huà)組合成
    CAAnimationGroup *group = [CAAnimationGroup animation];
    group.duration = 1;
    group.repeatCount = MAXFLOAT;
    group.removedOnCompletion = NO;
    group.autoreverses = YES;
    group.animations = @[enlarge, decrease, position];
    [self.circleLayer addAnimation:group forKey:@"Animation"];
}

// 移除動(dòng)畫(huà)
- (void)removeAnimation {
     [self.circleLayer removeAnimationForKey:@"Animation"];
}

@end

PS:上述嘗試實(shí)現(xiàn),都是直接用 frame 的高蜂!用自動(dòng)布局嘗試直接修改里面的chu

重點(diǎn)是看startAnimating 中的實(shí)現(xiàn)聪黎!

PS: 另外同時(shí)學(xué)習(xí) Swift ,直接去看 DTIActivityIndicatorView-Swift 里面的實(shí)現(xiàn)是很有必要备恤,雖說(shuō)好久沒(méi)更新啦稿饰。

同時(shí)通過(guò)上面幾組的學(xué)習(xí)嘗試,更加了體會(huì)到了一般動(dòng)畫(huà)的構(gòu)成露泊。

  • CALayer === > Who 事件是誰(shuí)做 喉镰;
  • CAAnimation ===> How 事件怎么做;
  • AddAnimation ===> Add 將誰(shuí)做和做怎么結(jié)合起來(lái)惭笑。

雖說(shuō)上述幾組動(dòng)畫(huà)都是一些基本的簡(jiǎn)單動(dòng)畫(huà)梧喷,但是任何復(fù)雜的動(dòng)畫(huà)都是由簡(jiǎn)單動(dòng)畫(huà)構(gòu)成,所以再次提醒自己動(dòng)畫(huà)并沒(méi)有想象中那么難脖咐!

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末铺敌,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子屁擅,更是在濱河造成了極大的恐慌偿凭,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件派歌,死亡現(xiàn)場(chǎng)離奇詭異弯囊,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)胶果,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門匾嘱,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人早抠,你說(shuō)我怎么就攤上這事霎烙。” “怎么了蕊连?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵悬垃,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我甘苍,道長(zhǎng)尝蠕,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任载庭,我火速辦了婚禮看彼,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘囚聚。我一直安慰自己靖榕,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布靡挥。 她就那樣靜靜地躺著序矩,像睡著了一般。 火紅的嫁衣襯著肌膚如雪跋破。 梳的紋絲不亂的頭發(fā)上簸淀,一...
    開(kāi)封第一講書(shū)人閱讀 50,096評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音毒返,去河邊找鬼租幕。 笑死,一個(gè)胖子當(dāng)著我的面吹牛拧簸,可吹牛的內(nèi)容都是我干的劲绪。 我是一名探鬼主播,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼贾富!你這毒婦竟也來(lái)了歉眷?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤颤枪,失蹤者是張志新(化名)和其女友劉穎汗捡,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體畏纲,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡扇住,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了盗胀。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片艘蹋。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖票灰,靈堂內(nèi)的尸體忽然破棺而出女阀,到底是詐尸還是另有隱情,我是刑警寧澤米间,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布强品,位于F島的核電站,受9級(jí)特大地震影響屈糊,放射性物質(zhì)發(fā)生泄漏的榛。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一逻锐、第九天 我趴在偏房一處隱蔽的房頂上張望夫晌。 院中可真熱鬧,春花似錦昧诱、人聲如沸晓淀。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)凶掰。三九已至,卻和暖如春蜈亩,著一層夾襖步出監(jiān)牢的瞬間懦窘,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工稚配, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留畅涂,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓道川,卻偏偏與公主長(zhǎng)得像午衰,于是被迫代替她去往敵國(guó)和親立宜。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351

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

  • 清臊岸,河水悠悠小槳行橙数,揚(yáng)帆過(guò),微漾細(xì)紋驚 緣扇单,三世齊眉戲子憐商模,何須唱,扇面畫(huà)桑田 幽蜘澜,山野清風(fēng)鶴鳥(niǎo)啾,狼嚎盡响疚,人坐醉...
    易清幽閱讀 3,015評(píng)論 0 3
  • 導(dǎo)語(yǔ):在職場(chǎng)上沒(méi)有所謂的公平與不公平忿晕,所以吃虧是難免的装诡。有的時(shí)候領(lǐng)導(dǎo)或同事做錯(cuò)的事情卻要你來(lái)承擔(dān),這種黑鍋當(dāng)然人人...
    浮生樂(lè)事閱讀 1,108評(píng)論 0 0
  • 婚前践盼,快餐店是我解決吃飯的地方鸦采。 婚后,家里的廚房設(shè)備齊全咕幻,我便很少外食渔伯。 可是,我懶散慣了肄程,只會(huì)吃不會(huì)做锣吼。老公見(jiàn)...
    玄玄被用了閱讀 478評(píng)論 7 4