Main.storyboard

ViewController.m

//

//  ViewController.m

//  8A04.图片浏览(转场动画)

//

//  Created by huan on 16/2/4.

//  Copyright © 2016年 huanxi. All rights reserved.

//

#import "ViewController.h"

#define AnimationDuration 2

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UIImageView *imageView;

-(IBAction)tapView:(UITapGestureRecognizer *)sender;

@property (nonatomic, strong) NSMutableArray *imgs;

@property (nonatomic, assign) NSInteger currentImgIndex;//当前的索引

@end

@implementation ViewController

-(NSMutableArray *)imgs{

if (!_imgs) {

_imgs = [NSMutableArray array];

for (NSInteger i = 1; i < 10; i++) {

NSString *imgName = [NSString stringWithFormat:@"%ld",i];

[_imgs addObject:imgName];

}

}

return _imgs;

}

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

NSLog(@"%@",self.imgs);

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

-(IBAction)tapView:(UITapGestureRecognizer *)tap{

//实现判断图片的左半边还是右半边

//获取触摸点

CGPoint point = [tap locationInView:tap.view];

NSLog(@"%@", NSStringFromCGPoint(point));

if (point.x <= tap.view.bounds.size.width *0.5) {

NSLog(@"上一张");

[self previous];

}else{

NSLog(@"下一张");

[self next];

}

}

-(void)previous{

//判断当前图片是不是第一张

if (self.currentImgIndex == 0) {

return;

}

//减索引 改图片

self.currentImgIndex --;

self.imageView.image = [UIImage imageNamed:self.imgs[self.currentImgIndex]];

//转场动画

CATransition *animation = [CATransition animation];

animation.type = @"push";

//默认就是fromLeft

animation.subtype = @"fromLeft";

animation.duration = AnimationDuration;

[self.imageView.layer addAnimation:animation forKey:nil];

}

/**

* 提示:转场动画的类型(type)和子类型(subtype)能用字符串常量就用字符串常量

*/

/**

*******************************************************

type:动画类型(比如:滴水效果,翻转效果...)

-------------------------------------------------------

fade kCATransitionFade 交叉淡化过渡

moveIn kCATransitionMoveIn 新视图移到旧视图上面

push kCATransitionPush 新视图把旧视图推出去

reveal kCATransitionReveal 将旧视图移开,显示下面的新视图

pageCurl               向上翻一页

pageUnCurl             向下翻一页

rippleEffect             滴水效果

suckEffect 收缩效果,如一块布被抽走

cube                   立方体效果

oglFlip              上下左右翻转效果

rotate     旋转效果

cameraIrisHollowClose 相机镜头关上效果(不支持过渡方向)

cameraIrisHollowOpen 相机镜头打开效果(不支持过渡方向)

*******************************************************

subtype: 动画方向(比如说是从左边进入,还是从右边进入...)

------------------------------------------------------

kCATransitionFromRight;

kCATransitionFromLeft;

kCATransitionFromTop;

kCATransitionFromBottom;

当 type 为@"rotate"(旋转)的时候,它也有几个对应的 subtype,分别为:

90cw 逆时针旋转 90°

90ccw 顺时针旋转 90°

180cw 逆时针旋转 180°

180ccw  顺时针旋转 180°

**/

-(void)next{

//判断当前图片是不是最好一张

if(self.currentImgIndex == self.imgs.count - 1){

NSLog(@"已经是最好一张");

return;

}

//加索引 改图片

self.currentImgIndex ++;

self.imageView.image = [UIImage imageNamed:self.imgs[self.currentImgIndex]];

//设置图片的时候,使用转场动画

CATransition *animation = [CATransition animation];

//设置转场动画的类型

//    `fade', `moveIn', `push' and `reveal'.

//fade 渐变 moveIn 直接移动

animation.type = @"rotate";

//    animation.type = kCATransitionPush;

//设置转场动画的子类型

//    `fromLeft', `fromRight', `fromTop' and

//    * `fromBottom'  fromLeft 从左边开始推

animation.subtype = @"90cw";

animation.duration = AnimationDuration;

[self.imageView.layer addAnimation:animation forKey:nil];

}

@end

图片浏览(CATransition)转场动画的更多相关文章

  1. CATransition转场动画

    背景: 最近在温习动画,分享个简单系统的转场动画 viewcontroller *VC=[self.storyboard instantiateViewControllerWithIdentifier ...

  2. core Animation之CATransition(转场动画)

    用于做转场动画,能够为层提供移出屏幕和移入屏幕的动画效果.iOS比Mac OS X的转场动画效果少一点 UINavigationController就是通过CATransition实现了将控制器的视图 ...

  3. 之四:CATransition - 转场动画

    关键属性: type 过渡效果  kCATransitionFade  淡出 kCATransitionMoveIn  覆盖原图 kCATransitionPush  推出 kCATransition ...

  4. CATransition 转场动画解析

    http://blog.csdn.net/mad2man/article/details/17260901

  5. iOS 转场动画核心内容

    CATransition——转场动画 CATransition是CAAnimation的子类,用于做转场动画,能够为层提供移出屏幕和移入屏幕的动画效果.iOS比Mac OS X的转场动画效果少一点. ...

  6. iOS:核心动画之转场动画CATransition

    转场动画——CATransition CATransition是CAAnimation的子类,用于做转场动画,能够为层提供移出屏幕和移入屏幕的动画效果.iOS比Mac OS X的转场动画效果少一点 U ...

  7. ios手势复习值之换图片-转场动画(纯代码)

    目标:实现通过手势进行图片的切换   通过左扫右扫 来实现(纯代码) 添加三个属性 1uiImageView 用来显示图片的view 2 index 用来表示图片的索引 3 ISLeft 判断是不是向 ...

  8. iOS CATransition 自定义转场动画

    https://www.jianshu.com/p/39c051cfe7dd CATransition CATransition 是CAAnimation的子类(如下图所示),用于控制器和控制器之间的 ...

  9. CATransition自定义转场动画

    我们可以通过CATransiton来自定义一些漂亮的转场动画, CATransition继承自CAAnimation, 所以用法跟CAAnimation差不多 先直接上一个代码: #import &q ...

随机推荐

  1. js中定义类的方式

  2. 阿里巴巴Java招聘

    大家好: 我是阿里巴巴B2B的应用架构师,现在大量招聘Java工程师,对自己技术有信心的兄弟姐妹,请联系我吧. 版权声明:本文为博主原创文章,未经博主允许不得转载.

  3. 书单.md

    0823 John Hoskin, An Ilustrated History of Thailand.Asia Books Co., Ltd.2015 0729 Gerald Graff, Cath ...

  4. css元素居中方法

    几种居中方式,分情况使用: 1.已知父盒子宽度,子盒子宽度: div{ transform: translate(-50%,-50%); //margin-left: - 自身宽度一半: positi ...

  5. WebMethod在webservice里面非静态方法能调用,在页面类里面,静态方法才能调用

    WebMethod在webservice里面非静态方法能调用,在页面类里面,静态方法才能调用

  6. Validate US Telephone Numbers

    function telephoneCheck(str) { // Good luck! //return true; var phone = /^1? ?(\d{3}|\(\d{3}\))[ -]? ...

  7. NGUI 灰化按钮或图标

    在游戏中某些地方可能需要对按钮进行灰化显示,从而表示不能点击!在网上找了一下有些方法是直接用UITexture+灰化shader去做这件事!另外有些方案写的不太清楚,看不懂!不过也基本都是要使用灰化s ...

  8. Android消息的提示,Toast吐司方式

    1:选中某个控件进行触发 2:触发事件进行监听,然后绑定Toast对象进行消息提示 1,创建Android项目的时候,自带的一个Activity,我们看看代码 package com.example. ...

  9. linux学习之——vim简明教程

    摘自  http://blog.csdn.net/niushuai666/article/details/7275406 ——————————正文开始—————————— 你想以最快的速度学习人类史上 ...

  10. MVc Forms Membership rolemanage 角色权限验证管理

    Forms  登录验证Membership 权限验证rolemanage 角色管理 以往的项目中只有单纯的Forms 验证今天想把这三个结合到mvc 中发现要导入aspnet_ 相关表,但是有个问题验 ...