iOS动画30案例

- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event

{

//图片向下消失

//    [self animationRevealFromBottom:self.iconView];

//图片向上消失

//    [self  animationRevealFromTop:self.iconView];

//图片向右消失

//    [self animationRevealFromLeft:self.iconView];

//图片向左消失

//    [self animationRevealFromRight:self.iconView];

//图片想上翻页

//    [self animationCurlUp:self.iconView];

//图片想下翻页

//    [self animationCurlDown:self.iconView];

//图片向上推动

//    [self animationPushUp:self.iconView];

//图片向下推动

//    [self animationPushDown:self.iconView];

//图片向左推动

//    [self animationPushLeft:self.iconView];

//图片向右推动

//    [self animationPushRight:self.iconView];

//图片从下往上推出  带有动画时间

//    [self animationMoveUp:self.iconView duration:2.0];

//图片从上往下推出  带有动画时间

//    [self animationMoveDown:self.iconView duration:2.0];

//图片从左往右推出

//    [self animationMoveLeft:self.iconView];

//图片从右往左推出

//    [self animationMoveRight:self.iconView];

//图片旋转变小 又变大

//    [self animationRotateAndScaleEffects:self.iconView];

//图片旋转变小 旋转变大

//    [self animationRotateAndScaleDownUp:self.iconView];

//图片翻转(从上往下)

//    [self animationFlipFromTop:self.iconView];

//图片翻转(从下往上)

//    [self animationFlipFromBottom:self.iconView];

//立体翻转(从左往右)

//    [self animationCubeFromLeft:self.iconView];

//立体翻转(从右往左)

//    [self animationCubeFromRight:self.iconView];

//立体翻转(从上往下)

//    [self animationCubeFromTop:self.iconView];

//立体翻转(从下往上)

//    [self animationCubeFromBottom:self.iconView];

//往左上角飞出

//    [self animationSuckEffect:self.iconView];

//抖动

//    [self animationRippleEffect:self.iconView];

//相机打开的动画

//    [self animationCameraOpen:self.iconView];

//相机关闭的动画

//    [self animationCameraClose:self.iconView];

//放大弹跳  移除

//    [self dapWithView:self.iconView];

//上下弹跳

//    [self animationShootOut:self.iconView];

//上下减速弹跳

shakerAnimation(self.iconView,2,200.0);

}





- (void)animationCameraClose:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"cameraIrisHollowClose"];

[animation setSubtype:@"fromRight"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationCameraOpen:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"cameraIrisHollowOpen"];

[animation setSubtype:@"fromRight"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationRippleEffect:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"rippleEffect"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationSuckEffect:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"suckEffect"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationCubeFromTop:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"cube"];

[animation setSubtype:@"fromTop"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationCubeFromBottom:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"cube"];

[animation setSubtype:@"fromBottom"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationCubeFromRight:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"cube"];

[animation setSubtype:@"fromRight"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationCubeFromLeft:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"cube"];

[animation setSubtype:@"fromLeft"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationFlipFromBottom:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"oglFlip"];

[animation setSubtype:@"fromBottom"];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationFlipFromTop:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:@"oglFlip"];

[animation setSubtype:@"fromTop"];

[view.layer addAnimation:animation forKey:nil];

}

/** CABasicAnimation

*

*  @see https://developer.apple.com/library/mac/#documentation/cocoa/conceptual/CoreAnimation_guide/Articles/KVCAdditions.html

*

*  @brief                      便利构造函数 animationWithKeyPath: KeyPath需要一个字符串类型的参数,实际上是一个

*                              键-值编码协议的扩展,参数必须是CALayer的某一项属性,你的代码会对应的去改变该属性的效果

*                              具体可以填写什么请参考上面的URL,切勿乱填!

*                              例如这里填写的是 @"transform.rotation.z" 意思就是围绕z轴旋转,旋转的单位是弧度.

*                              这个动画的效果是把view旋转到最小,再旋转回来.

*                              你也可以填写@"opacity" 去修改透明度...以此类推.修改layer的属性,可以用这个类.

*

*  @param toValue              动画结束的值.CABasicAnimation自己只有三个属性(都很重要)(其他属性是继承来的),分别为:

*                              fromValue(开始值), toValue(结束值), byValue(偏移值),

!                              这三个属性最多只能同时设置两个;

*                              他们之间的关系如下:

*                              如果同时设置了fromValue和toValue,那么动画就会从fromValue过渡到toValue;

*                              如果同时设置了fromValue和byValue,那么动画就会从fromValue过渡到fromValue + byValue;

*                              如果同时设置了byValue  和toValue,那么动画就会从toValue - byValue过渡到toValue;

*

*                              如果只设置了fromValue,那么动画就会从fromValue过渡到当前的value;

*                              如果只设置了toValue  ,那么动画就会从当前的value过渡到toValue;

*                              如果只设置了byValue  ,那么动画就会从从当前的value过渡到当前value + byValue.

*

*                              可以这么理解,当你设置了三个中的一个或多个,系统就会根据以上规则使用插值算法计算出一个时间差并

*                              同时开启一个Timer.Timer的间隔也就是这个时间差,通过这个Timer去不停地刷新keyPath的值.

!                              而实际上,keyPath的值(layer的属性)在动画运行这一过程中,是没有任何变化的,它只是调用了GPU去

*                              完成这些显示效果而已.

*                              在这个动画里,是设置了要旋转到的弧度,根据以上规则,动画将会从它当前的弧度专旋转到我设置的弧度.

*

*  @param duration            动画持续时间

*

*  @param timingFunction      动画起点和终点之间的插值计算,也就是说它决定了动画运行的节奏,是快还是慢,还是先快后慢...

*/

/** CAAnimationGroup

*

*  @brief                      顾名思义,这是一个动画组,它允许多个动画组合在一起并行显示.比如这里设置了两个动画,

*                              把他们加在动画组里,一起显示.例如你有几个动画,在动画执行的过程中需要同时修改动画的某些属性,

*                              这时候就可以使用CAAnimationGroup.

*

*  @param duration            动画持续时间,值得一提的是,如果添加到group里的子动画不设置此属性,group里的duration会统一

*                              设置动画(包括子动画)的duration属性;但是如果子动画设置了duration属性,那么group的duration属性

*                              的值不应该小于每个子动画中duration属性的值,否则会造成子动画显示不全就停止了动画.

*

*  @param autoreverses        动画完成后自动重新开始,默认为NO.

*

*  @param repeatCount          动画重复次数,默认为0.

*

*  @param animations          动画组(数组类型),把需要同时运行的动画加到这个数组里.

*

*  @note  addAnimation:forKey  这个方法的forKey参数是一个字符串,这个字符串可以随意设置.

*

*  @note                      如果你需要在动画group执行结束后保存动画效果的话,设置 fillMode 属性,并且把

*                              removedOnCompletion 设置为NO;

*/

- (void)animationRotateAndScaleDownUp:(UIView *)view

{

CABasicAnimation *rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];

rotationAnimation.toValue = [NSNumber numberWithFloat:(2 * M_PI) * 2];

rotationAnimation.duration = 0.35f;

rotationAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

CABasicAnimation *scaleAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"];

scaleAnimation.toValue = [NSNumber numberWithFloat:0.0];

scaleAnimation.duration = 0.35f;

scaleAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

CAAnimationGroup *animationGroup = [CAAnimationGroup animation];

animationGroup.duration = 0.35f;

animationGroup.autoreverses = YES;

animationGroup.repeatCount = 1;

animationGroup.animations =[NSArray arrayWithObjects:rotationAnimation, scaleAnimation, nil];

[view.layer addAnimation:animationGroup forKey:@"animationGroup"];

}

- (void)animationRotateAndScaleEffects:(UIView *)view

{

[UIView animateWithDuration:0.35f animations:^

{

/**

*  @see      http://donbe.blog.163.com/blog/static/138048021201061054243442/

*

*  @param    transform  形变属性(结构体),可以利用这个属性去对view做一些翻转或者缩放.详解请猛戳↑URL.

*

*  @method    valueWithCATransform3D: 此方法需要一个CATransform3D的结构体.一些非详细的讲解可以看下面的URL

*

*  @see      http://blog.csdn.net/liubo0_0/article/details/7452166

*

*/

view.transform = CGAffineTransformMakeScale(0.001, 0.001);

CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform"];

// 向右旋转45°缩小到最小,然后再从小到大推出.

animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, 0.70, 0.40, 0.80)];

/**

*    其他效果:

*    从底部向上收缩一半后弹出

*    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, 0.0, 1.0, 0.0)];

*

*    从底部向上完全收缩后弹出

*    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, 1.0, 0.0, 0.0)];

*

*    左旋转45°缩小到最小,然后再从小到大推出.

*    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, 0.50, -0.50, 0.50)];

*

*    旋转180°缩小到最小,然后再从小到大推出.

*    animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI, 0.1, 0.2, 0.2)];

*/

animation.duration = 0.45;

animation.repeatCount = 1;

[view.layer addAnimation:animation forKey:nil];

}

completion:^(BOOL finished)

{

[UIView animateWithDuration:0.35f animations:^

{

view.transform = CGAffineTransformMakeScale(1.0, 1.0);

}];

}];

}

- (void)animationMoveLeft:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:kCATransitionMoveIn];

[animation setSubtype:kCATransitionFromLeft];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationMoveRight:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:kCATransitionMoveIn];

[animation setSubtype:kCATransitionFromRight];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationMoveDown:(UIView *)view duration:(CFTimeInterval)duration

{

CATransition *transition = [CATransition animation];

transition.duration =0.4;

transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

transition.type = kCATransitionReveal;

transition.subtype = kCATransitionFromBottom;

[view.layer addAnimation:transition forKey:nil];

}

- (void)animationMoveUp:(UIView *)view duration:(CFTimeInterval)duration

{

CATransition *animation = [CATransition animation];

[animation setDuration:duration];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];

[animation setType:kCATransitionMoveIn];

[animation setSubtype:kCATransitionFromTop];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationPushLeft:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:kCATransitionPush];

[animation setSubtype:kCATransitionFromLeft];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationPushRight:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:kCATransitionPush];

[animation setSubtype:kCATransitionFromRight];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationPushDown:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:kCATransitionPush];

[animation setSubtype:kCATransitionFromBottom];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationPushUp:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[animation setType:kCATransitionPush];

[animation setSubtype:kCATransitionFromTop];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationCurlDown:(UIView *)view

{

[UIView beginAnimations:nil context:NULL];

[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];

[UIView setAnimationDuration:0.35f];

[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:view cache:NO];

[UIView commitAnimations];

}

- (void)animationCurlUp:(UIView *)view

{

[UIView beginAnimations:nil context:NULL];

[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];

[UIView setAnimationDuration:0.35f];

[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:view cache:NO];

[UIView commitAnimations];

}

- (void)animationRevealFromRight:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setType:kCATransitionReveal];

[animation setSubtype:kCATransitionFromRight];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationRevealFromLeft:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setType:kCATransitionReveal];

[animation setSubtype:kCATransitionFromLeft];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationRevealFromBottom:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setType:kCATransitionReveal];

[animation setSubtype:kCATransitionFromBottom];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]];

[view.layer addAnimation:animation forKey:nil];

}

- (void)animationRevealFromTop:(UIView *)view

{

CATransition *animation = [CATransition animation];

[animation setDuration:0.35f];

[animation setType:kCATransitionReveal];

[animation setSubtype:kCATransitionFromTop];

[animation setFillMode:kCAFillModeForwards];

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];

[view.layer addAnimation:animation forKey:nil];

}

- (void)dapWithView:(UIView *)animateImageView

{

[UIView animateWithDuration:0.6f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

animateImageView.frame = CGRectMake(0, 0, 320, 460);

} completion:^(BOOL finished){

[UIView animateWithDuration:0.2f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^(void){

animateImageView.frame = CGRectMake(0, -60, 320, 460);  //弹起

} completion:^(BOOL finished){

[UIView animateWithDuration:0.15f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

animateImageView.frame = CGRectMake(0, 0, 320, 460);

} completion:^(BOOL finished){

[UIView animateWithDuration:0.05f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^(void){

animateImageView.frame = CGRectMake(0, -20, 320, 460); //弹起

} completion:^(BOOL finished){

[UIView animateWithDuration:0.1f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

animateImageView.frame = CGRectMake(0, 0, 320, 460);

} completion:^(BOOL finished){

[UIView animateWithDuration:0.1f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^(void){

animateImageView.frame = CGRectMake(0, -4, 320, 460);    //弹起

} completion:^(BOOL finished){

[UIView animateWithDuration:0.1f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

animateImageView.frame = CGRectMake(0, 0, 320, 460);

} completion:^(BOOL finished){

[UIView animateWithDuration:0.3f delay:0.5f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

animateImageView.frame = CGRectMake(0, -460, 320, 460);

} completion:^(BOOL finished){

[animateImageView removeFromSuperview];

[animateImageView.layer removeFromSuperlayer];

}];

}];

}];

}];

}];

}];

}];

}];

}

- (void)animationShootOut:(UIView *)animationView{

CGRect frame = animationView.frame;

[UIView animateWithDuration:0.4f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

} completion:^(BOOL finished){

[UIView animateWithDuration:0.4f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^(void){

//弹起

animationView.frame = CGRectMake(frame.origin.x, frame.origin.y-20, frame.size.width, frame.size.height);

} completion:^(BOOL finished){

[UIView animateWithDuration:0.4f delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^(void){

//下降

animationView.frame = frame;

} completion:^(BOOL finished){

[UIView animateWithDuration:0.4f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^(void){

//弹起

animationView.frame = CGRectMake(frame.origin.x, frame.origin.y-10, frame.size.width, frame.size.height);

} completion:^(BOOL finished){

//下降

[UIView animateWithDuration:0.4f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^(void){

animationView.frame = frame;

} completion:^(BOOL finished){

}];

}];

}];

}];

}];

}

void shakerAnimation (UIView *view ,NSTimeInterval duration,float height){

CAKeyframeAnimation * animation = [CAKeyframeAnimation animationWithKeyPath:@"transform.translation.y"];

CGFloat currentTx = view.transform.ty;

animation.duration = duration;

animation.values = @[@(currentTx), @(currentTx + height), @(currentTx-height/3*2), @(currentTx + height/3*2), @(currentTx -height/3), @(currentTx + height/3), @(currentTx)];

animation.keyTimes = @[ @(0), @(0.225), @(0.425), @(0.6), @(0.75), @(0.875), @(1) ];

animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

[view.layer addAnimation:animation forKey:@"kViewShakerAnimationKey"];

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,835评论 4 364
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,598评论 1 295
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 109,569评论 0 244
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,159评论 0 213
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,533评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,710评论 1 222
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,923评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,674评论 0 203
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,421评论 1 246
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,622评论 2 245
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,115评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,428评论 2 254
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,114评论 3 238
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,097评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,875评论 0 197
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,753评论 2 276
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,649评论 2 271

推荐阅读更多精彩内容