IOS動畫+轉(zhuǎn)場動畫

IOS動畫+轉(zhuǎn)場動畫


#import "ViewController.h"

#import "secondViewController.h"

#define kScreenWidth ([[UIScreen mainScreen] bounds].size.width)

#define kScreenHeight ([[UIScreen mainScreen] bounds].size.height)

@interface ViewController ()

@property (nonatomic,strong)UIImageView * img;

@end@implementation ViewController//如果fillMode=kCAFillModeForwards和removedOnComletion=NO,那么在動畫執(zhí)行完畢后瓦盛,圖層會保持顯示動畫執(zhí)行后的狀態(tài)原环。但在實質(zhì)上嘱吗,圖層的屬性值還是動畫執(zhí)行前的初始值谒麦,并沒有真正被改變绕德。//anima.fillMode = kCAFillModeForwards;//anima.removedOnCompletion = NO;

- (void)viewDidLoad {? ??

[super viewDidLoad];? ??

self.img = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 200, 200)];? ??

self.img.center =self.view.center;??

?// self.img.layer.masksToBounds =YES;? ??

self.img.layer.shadowColor = [UIColor lightGrayColor].CGColor;? ??

self.img.layer.shadowOffset = CGSizeMake(7, 7);? ??

self.img.layer.shadowOpacity = 0.70;? ?

?[self.view addSubview:self.img ];? ??

self.img.image = [UIImage imageNamed:@"img1.jpg"];? ? }

//position動畫

- (void)positionup{? ??

CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"position"];? ? anima.fromValue = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2)];? ??

anima.toValue? = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2-300)];? ?

?anima.duration =1.0f;? ??

anima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];? ?

?[self.img.layer addAnimation:anima forKey:@"positionAnimation"];}

-(void)positiondown{? ??

CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"position"];? ? anima.fromValue = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2)];? ?

?anima.toValue? = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2+300)];? ??

anima.duration = 2.0f;? ?

?anima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];??

? [self.img.layer addAnimation:anima forKey:@"positionAnimation"];? ? }

- (void)positionleft{? ? ? ??

CABasicAnimation? * anima = [CABasicAnimation animationWithKeyPath:@"position"];? ? anima.fromValue = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2)];? ??

anima.toValue? = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2-200, kScreenHeight/2)];? ??

anima.duration =3.0f;? ??

anima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];? ??

[self.img.layer addAnimation:anima forKey:@"position"];? ? }

- (void)positionright{? ??

CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"position"];? ? anima.fromValue? = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2)];? ?

?anima.toValue? ? = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2+200, kScreenHeight/2)];? ?

?anima.duration? = 3.0f;??

? [self.img.layer addAnimation:anima forKey:@"position"];? ? }

-(void)positionzheng{? ??

CAKeyframeAnimation * anima =? [CAKeyframeAnimation animationWithKeyPath:@"position"];? ? NSValue? * value1 = [NSValue valueWithCGPoint:CGPointMake(0, 0)];??

? NSValue? * value2 = [NSValue valueWithCGPoint:CGPointMake(200, 200)];??

? NSValue? * value3 = [NSValue valueWithCGPoint:CGPointMake(200, 400)];? ?

?NSValue? * value4 = [NSValue valueWithCGPoint:CGPointMake(0, 200)];? ? anima.values = @[value1,value2,value3,value4];? ??

anima.duration = 2.0f;? ? ??

anima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];? ?

?[self.img.layer addAnimation:anima forKey:@"positionAnimation"];? ? }

- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag{? ??

self.img.hidden = YES;}

- (void)positionbezierpath{? ??

CAKeyframeAnimation * anima = [CAKeyframeAnimation animationWithKeyPath:@"position"];? ? UIBezierPath? ? * path = [UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 200, 500)];? ? anima.path = path.CGPath;? ??

anima.duration = 4.0f;? ?

?anima.fillMode = kCAFillModeForwards;? ??

anima.removedOnCompletion = NO;??

? anima.delegate = self;??

? [self.img.layer addAnimation:anima forKey:@"position"];}

//opacity動畫

- (void)opacity{? ? CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"opacity"];? ?

?anima.fromValue = [NSNumber numberWithFloat:1.0f]; ?

?anima.toValue? = [NSNumber numberWithFloat:0.2f];? ??

anima.fillMode = kCAFillModeForwards;? ??

anima.removedOnCompletion = NO;? ?

?anima.duration =1.0f;? ??

[self.img.layer addAnimation:anima forKey:@"opacity"];? ? }

//transfrom.scale動畫

- (void)transformscale{? ??

CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"transform.scale"];? ? anima.toValue? = [NSNumber numberWithFloat:2.0f];? ?

?anima.duration = 3.0f;? ??

anima.fillMode = kCAFillModeForwards;? ??

anima.removedOnCompletion = NO;? ?

?[self.img.layer addAnimation:anima forKey:@"transform.scale"];}

- (void)transformscalex{? ?

?CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"transform.scale.x"];? ? anima.toValue = [NSNumber numberWithFloat:1.0f];? ??

anima.duration = 2.0f;??

? [self.img.layer addAnimation:anima forKey:@"transform.scale.x"];}

- (void)transformscaley{? ?

?CABasicAnimation * anima = [CABasicAnimation? animationWithKeyPath:@"transform.scale.y"];? ? anima.toValue = [NSNumber numberWithFloat:1.0f];??

? anima.duration = 2.0f;? ??

[self.img.layer addAnimation:anima forKey:@"transform.scale.y"];? ? }

//transform.rotation動畫

- (void)rotationz{? ?

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

? anima.toValue = [NSNumber numberWithFloat:M_PI*2];? ??

anima.duration =2.0f;??

? [self.img.layer addAnimation:anima forKey:@"transform.rotation.z"];? ? }

- (void)rotationx{? ?

?CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"transform.rotation.x"];? ??

anima.toValue = [NSNumber numberWithFloat:M_PI*2];? ??

anima.duration = 2.0f;? ?

?[self.img.layer addAnimation:anima forKey:@"transform.rotation.x"];}

- (void)rotationy{? ?

?CABasicAnimation? * anima? = [CABasicAnimation animationWithKeyPath:@"transform.rotation.y"];? ??

anima.toValue = [NSNumber numberWithFloat:M_PI*2];? ??

anima.duration = 2.0f;? ?

?[self.img.layer addAnimation:anima forKey:@"transform.scale.y"];}

- (void)shake{? ??

CAKeyframeAnimation? * anima = [CAKeyframeAnimation animationWithKeyPath:@"transform.rotation"];? ??

NSValue * value1 = [NSNumber numberWithFloat:-M_PI/180*4];? ??

NSValue * value2 = [NSNumber numberWithFloat:M_PI/180*4];? ??

NSValue * value3 = [NSNumber numberWithFloat:-M_PI/180*4];? ?

?anima.values = @[value1,value2,value3];? ??

anima.repeatCount = MAXFLOAT;? ?

?[self.img.layer addAnimation:anima forKey:@"transform.rotation"];}

//backgroundColor動畫

- (void)backgroundColor{??

? CABasicAnimation * anima = [CABasicAnimation? animationWithKeyPath:@"backgroundColor"];? ? anima.toValue = (id)[UIColor grayColor].CGColor;? ??

anima.duration =2.0f;? ?

?[self.img.layer addAnimation:anima forKey:@"backgroundColor"];}

//cornerRadius動畫

- (void)cornerRadius{? ??

CABasicAnimation? * anima =? [CABasicAnimation animationWithKeyPath:@"cornerRadius"];? ? anima.toValue? = [NSNumber numberWithFloat:50.0f];??

? anima.duration = 1.0f;? ??

anima.fillMode = kCAFillModeForwards;? ?

?anima.removedOnCompletion = NO;? ?

?[self.img.layer addAnimation:anima forKey:@"cornerRadius"];}

- (void)cornerRadiusl{? ?

?CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"cornerRadius"];? ? anima.toValue = [NSNumber? numberWithFloat:0];? ??

anima.duration =2.0;? ??

anima.fillMode = kCAFillModeForwards;? ?

?anima.removedOnCompletion = NO;?

?? [self.img.layer addAnimation:anima forKey:@"cornerRadius"];}

//圖品切換動畫

- (void)changeImageAnimatedWithView :(UIImageView *)imageV AndImage:(UIImage*)image{? ? CATransition * transition? = [CATransition? animation];? ?

?transition.duration = 2;? ??

transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];? ?

?transition.type = @"cameraIrisHollowClose";//kCATransitionReveal;??

? [imageV.layer addAnimation:transition forKey:@"transition"]; ?

?[imageV setImage:image];}

//borderWidth動畫

- (void)borderWidth{? ??

CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"borderWidth"];? ? anima.toValue = [NSNumber numberWithFloat:20.0f];?

?? anima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault];??

? anima.duration = 1.0f;? ? anima.fillMode = kCAFillModeForwards;? ??

anima.removedOnCompletion = NO;??

? [self.img.layer addAnimation:anima forKey:@"borderWidth"];}

// shadowColor動畫

- (void)shadowColor{? ?

?CABasicAnimation * anima = [CABasicAnimation animationWithKeyPath:@"shadowColor"];? ? anima.toValue = (id)[UIColor redColor].CGColor;? ?

?anima.fillMode= kCAFillModeForwards;? ??

anima.removedOnCompletion =NO;? ??

anima.duration = 2.0f;? ?

?[self.img.layer addAnimation:anima forKey:@"shadowColor"];}

- (void)groupAnimation{? ??

CAKeyframeAnimation * anima = [CAKeyframeAnimation? animationWithKeyPath:@"position"];? ? NSValue * value = [NSValue valueWithCGPoint:CGPointMake(0, 0)];?

?? NSValue * value1 = [NSValue valueWithCGPoint:CGPointMake(20, 20)];? ??

anima.values = @[value,value1];? ? ? ?

?CABasicAnimation * anima1 = [CABasicAnimation animationWithKeyPath:@"opacity"];? ? anima1.fromValue = [NSNumber numberWithFloat:1.0f];? ??

anima1.toValue = [NSNumber numberWithFloat:0.2f];? ? ? ?

?CABasicAnimation? * anima2 = [CABasicAnimation? animationWithKeyPath:@"transform.rotation"];? ?

?anima2.toValue = [NSNumber numberWithFloat:M_PI*4];? ? ? ?

?CAAnimationGroup * group = [CAAnimationGroup animation];??

? group.animations = @[anima,anima1,anima2];? ?

?group.duration = 6.0f;? ? [self.img.layer addAnimation:group forKey:@"animation"];??

? //-如下蚊惯,使用三個animation不分裝成group截型,只是把他們添加到layer宦焦,也有組動畫的效果波闹。----------? ? /**? ??

?CAKeyframeAnimation *anima1 = [CAKeyframeAnimation animationWithKeyPath:@"position"];? ?

?NSValue * value = [NSValue valueWithCGPoint:CGPointMake(0, 0)];??

? NSValue * value1 = [NSValue valueWithCGPoint:CGPointMake(20, 20)];? ??

? ? ? anima1.values = @[value,value1];? ??

?anima1.duration = 4.0f;? ?

?[_wsView.layer addAnimation:anima1 forKey:@"aa"];? ? ??

? ? //縮放動畫??

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

?anima2.fromValue = [NSNumber numberWithFloat:0.8f];? ?

?anima2.toValue = [NSNumber numberWithFloat:2.0f];? ??

?anima2.duration = 4.0f;??

? [_wsView.layer addAnimation:anima2 forKey:@"bb"];? ? ? ? ?

?//旋轉(zhuǎn)動畫? ?

?CABasicAnimation *anima3 = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];? ? anima3.toValue = [NSNumber numberWithFloat:M_PI*4];??

? anima3.duration = 4.0f;? ? [_wsView.layer addAnimation:anima3 forKey:@"cc"];? ? ? ? ? */? ? }

-? (void)timeGroupAnimation{? ?

?CFTimeInterval currentTime = CACurrentMediaTime();? ??

CFTimeInterval time = CACurrentMediaTime();? ??

NSLog(@"%f",time);? ? //位移動畫? ? //位移動畫??

? CAKeyframeAnimation *anima1 = [CAKeyframeAnimation animationWithKeyPath:@"position"];? ? NSValue *value0 = [NSValue valueWithCGPoint:CGPointMake(0, kScreenHeight/2-50)];? ? NSValue *value1 = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/4, kScreenHeight/2-50)];? ?

?NSValue *value2 = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/4, kScreenHeight/2+50)];? ?

?NSValue *value3 = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2+50)];? ?

?NSValue *value4 = [NSValue valueWithCGPoint:CGPointMake(kScreenWidth/2, kScreenHeight/2-50)];? ??

anima1.values = [NSArray arrayWithObjects:value0,value1,value2,value3,value4, nil];? ? anima1.beginTime = currentTime;? ??

anima1.duration = 2.0f;? ?

?anima1.fillMode = kCAFillModeForwards;??

? anima1.removedOnCompletion = NO;? ?

?[self.img.layer addAnimation:anima1 forKey:@"aa"];? ? ??

? //縮放動畫? ? CABasicAnimation *anima2 = [CABasicAnimation animationWithKeyPath:@"transform.scale"];? ?

?anima2.fromValue = [NSNumber numberWithFloat:0.8f];??

? anima2.toValue = [NSNumber numberWithFloat:2.0f];? ?

?anima2.beginTime = currentTime+2.0f;??

? anima2.duration = 1.0f;? ??

anima2.fillMode = kCAFillModeForwards;? ??

anima2.removedOnCompletion = NO;??

? [self.img.layer addAnimation:anima2 forKey:@"bb"];? ? ? ?

?//旋轉(zhuǎn)動畫? ?

?CABasicAnimation *anima3 = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];? ?

?anima3.toValue = [NSNumber numberWithFloat:M_PI*4];? ?

?anima3.beginTime = currentTime+3.0f;? ??

anima3.duration = 1.0f;? ?

?anima3.fillMode = kCAFillModeForwards;??

? anima3.removedOnCompletion = NO;? ?

?[self.img.layer addAnimation:anima3 forKey:@"cc"];}

-(void)CATransition{? ?

?CATransition? * anima = [CATransition? animation];? ??

anima.type = kCAAnimationCubic;? ??

anima.duration? = 2.0f;? ? //? ?

?anima.subtype = kCATransitionFromRight; //設(shè)置動畫的方向??

? [self.img setImage:[UIImage imageNamed:@"img2.jpg"]];? ?

?[self.img.layer addAnimation:anima forKey:@"catransition"];}

-(void)privateCATransition{? ??

CATransition *anima = [CATransition animation];? ??

anima.type = @"cube";//設(shè)置動畫的類型? ??

anima.subtype = kCATransitionFromRight; //設(shè)置動畫的方向? ??

anima.duration = 1.0f;? ? ? ??

[self.img.layer addAnimation:anima forKey:@"revealAnimation"];}

//私有api/*fade交叉淡化 過度的效果push新視圖把舊視圖推出去moveIn新視圖移到舊視圖上面reveal將舊視圖移開歹篓,顯示新視圖cube立方體翻滾的效果oglFlip上下左右翻轉(zhuǎn)的效果suckEffect收縮效果庄撮,如一塊布被抽走rippleEffect水滴效果(像是在屏幕上滴了一滴水洞斯,然后泛起一下漣漪)pageCurl向上翻頁效果pageUnCurl向下翻頁效果cameraIrisHollowOpen相機鏡頭打開效果cameraIrisHollowClose相機鏡頭關(guān)閉效果*/

- (void)viewanimation{? ? self.img.transform = CGAffineTransformIdentity;?

?? [UIView animateWithDuration:2.0f animations:^{? ? ? ?

?//移動? ? ? ? self.img.transform = CGAffineTransformMakeTranslation(100, 0);? ? ??

? //旋轉(zhuǎn)? ? ? ? self.img.transform = CGAffineTransformMakeRotation(M_PI);? ??

? ? //縮放? ? ? ? self.img.transform = CGAffineTransformMakeScale(1, 2);? ? ? ? ? ? }];??

? //? ? [UIView animateWithDuration:2.0f animations:^{

//? ? ? ??

//? ? } completion:^(BOOL finished) {

//? ? ? ?

?//? ? }];//??

? //? ? [UIView animateWithDuration:2.0f

//? ? ? ? ? ? ? ? ? ? ? ? ? delay:2.0f

//? ? ? ? ? ? ? ? ? ? ? ? options:UIViewAnimationOptionCurveEaseInOut

// ? ? ? ? ? ? ? ? ? ?animations:^{

//? ? ??

? //? ? } completion:^(BOOL finished) {

//? ? ? ?

?//? ? }];

// ? ?

//? ? [UIView animateKeyframesWithDuration:2.0f

//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? delay:2.0f

//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? options:UIViewKeyframeAnimationOptionAutoreverse//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? animations:^{

//? ? ? ??

//? ? } completion:^(BOOL finished) {

//? ? ? ?

?//? ? }];}//動畫組

- (void)viewGroup{? ??

self.img.transform = CGAffineTransformIdentity;??

? [UIView animateWithDuration:2.0 animations:^{? ? ? ?

?CGAffineTransform form = CGAffineTransformMakeScale(2, 2);? ? ? ??

CGAffineTransform form1 = CGAffineTransformRotate(form,M_PI);? ? ? ? ? ? ??

? self.img.transform = CGAffineTransformInvert(form1);? ? }];}

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

[self changeImageAnimatedWithView:self.img AndImage:[UIImage imageNamed:@"img2.jpg"]];

//[self timeGroupAnimation];

//[self shadowColor];

//[self CATransition];

//[self viewanimation];

// [self viewGroup];

}

//轉(zhuǎn)場動畫

- (void)viewCheak{

secondViewController * vic = [[secondViewController alloc]init];

dispatch_group_t group = dispatch_group_create();

dispatch_group_enter(group);

CATransition *transition = [[CATransition alloc]init];

transition.duration = .5;

transition.type =? @"rippleEffect";

transition.subtype = kCATransitionFromRight;

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

dispatch_group_leave(group);

dispatch_async(dispatch_get_main_queue(), ^{

[self.navigationController pushViewController:vic animated:NO];

});

}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市乖坠,隨后出現(xiàn)的幾起案子熊泵,更是在濱河造成了極大的恐慌甸昏,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異翻默,居然都是意外死亡,警方通過查閱死者的電腦和手機趾牧,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門吨枉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來哄芜,“玉大人认臊,你說我怎么就攤上這事【缒澹” “怎么了恕酸?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長袱箱。 經(jīng)常有香客問我发笔,道長,這世上最難降的妖魔是什么捻激? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任胞谭,我火速辦了婚禮丈屹,結(jié)果婚禮上旺垒,老公的妹妹穿的比我還像新娘先蒋。我一直安慰自己鞭达,他們只是感情好,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布坦仍。 她就那樣靜靜地躺著繁扎,像睡著了一般糊闽。 火紅的嫁衣襯著肌膚如雪右犹。 梳的紋絲不亂的頭發(fā)上念链,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機與錄音谦纱,去河邊找鬼跨嘉。 笑死吃嘿,一個胖子當著我的面吹牛兑燥,可吹牛的內(nèi)容都是我干的贪嫂。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼馍盟!你這毒婦竟也來了茧吊?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤话速,失蹤者是張志新(化名)和其女友劉穎泊交,沒想到半個月后廓俭,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體研乒,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡雹熬,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年赋焕,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片隆判。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡臭挽,死狀恐怖咬腕,靈堂內(nèi)的尸體忽然破棺而出涨共,到底是詐尸還是另有隱情举反,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布雕崩,位于F島的核電站盼铁,受9級特大地震影響尝偎,放射性物質(zhì)發(fā)生泄漏冬念。R本人自食惡果不足惜急前,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一刨摩、第九天 我趴在偏房一處隱蔽的房頂上張望澡刹。 院中可真熱鬧耘婚,春花似錦、人聲如沸沐祷。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽赖临。三九已至胞锰,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間兢榨,已是汗流浹背嗅榕。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留吵聪,地道東北人凌那。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓澎办,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子鹅巍,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

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