CALayer实现遮罩、图片切换、进度条效果

最近发现CALayer能实现的东西有很多,而且都很有意思,效果不错。今天写了一个遮罩的和一个图片渐变的功能。

先看效果。

遮罩效果
遮罩效果


跟舞台的聚光灯一样 随着时间移来移去的,遮罩住其他的地方。

直接上代码了。

```

@interface MaskViewController ()

@property (nonatomic, strong) CALayer *imageLayer;

@property (nonatomic, strong) CALayer *maskLayer;

@property (nonatomic, strong) UIImage *imageContents;

@property (nonatomic, strong) UIImage *maskContents;

@end

@implementation MaskViewController

- (void)viewDidLoad {

[super viewDidLoad];

self.view.backgroundColor = [UIColor grayColor];

self.imageContents = [UIImage imageNamed:@"开始图片.jpg"];

self.maskContents = [UIImage imageNamed:@"maskLayerContents"];

//图片layer

self.imageLayer = [CALayer layer];

self.imageLayer.frame = CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height - 64);

self.imageLayer.contents = (__bridge id _Nullable)(self.imageContents.CGImage);

[self.view.layer addSublayer:self.imageLayer];

//遮罩layer

self.maskLayer = [CALayer layer];

self.maskLayer.frame = CGRectMake(0, 64, 200, 200);

self.maskLayer.contents = (__bridge id _Nullable)(self.maskContents.CGImage);

//    这个不用图片也可以 用背景颜色 例如下面这段  但是效果没图片那样好看

//    self.maskLayer.backgroundColor = [UIColor blackColor].CGColor;

//    self.maskLayer.cornerRadius = 100;

//    self.maskLayer.masksToBounds = YES;

//    An optional layer whose alpha channel is used to mask the layer’s content.

//    根据alpha通道 来选择遮罩的地方 黑色全通过,白色全不通过

self.imageLayer.mask = self.maskLayer;

[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(maskLayerAnimation:) userInfo:nil repeats:YES];

}

- (void)maskLayerAnimation:(NSTimer *)timer{

//要显示的区域可以自己在设定一下

CGFloat x = arc4random() % (375-200);

CGFloat y = arc4random() % (667-200-64);

self.maskLayer.frame = CGRectMake(x, y, 200, 200);

}

```

注释都有 另外还有一个图片的出现消失的组合动画,代码如下

#define ISSHOW YES

@interface ChangeViewController ()

@property (nonatomic, strong) CALayer *imageLayer;

@end

@implementation ChangeViewController

- (void)viewDidLoad {

[super viewDidLoad];

self.view.backgroundColor = [UIColor whiteColor];

UIImage *image1 = [UIImage imageNamed:@"开始图片.jpg"];

//    self.view.layer.contents = (__bridge id _Nullable)(image.CGImage);

//    只要有前面这两句就可以显示图片了,可以得出layer是图片的载体 UIimageView可能是充分的利用了这个属性

//创建出图片的layer

self.imageLayer = [CALayer layer];

self.imageLayer.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);

[self.view.layer addSublayer:self.imageLayer];

//    将图片加载到layer的contents

self.imageLayer.contents = (__bridge id _Nullable)(image1.CGImage);

[self performSelector:@selector(layerAnimation) withObject:nil afterDelay:3.0];

}

- (void)layerAnimation{

UIImage *image2 = [UIImage imageNamed:@"结束图片.jpg"];

//隐式动画 比没有流畅仔细看

if (!ISSHOW) {

self.imageLayer.contents = (__bridge id _Nullable)(image2.CGImage);

}

else{

//    keyPath就是imageLayer的contents属性  这个是图片动画

CABasicAnimation *contentsAnimation = [CABasicAnimation animationWithKeyPath:@"contents"];

//    起始图片

contentsAnimation.fromValue = self.imageLayer.contents;

//    结束图片

contentsAnimation.toValue = (__bridge id _Nullable)(image2.CGImage);

//    持续时间

contentsAnimation.duration = 2.0f;

//    bounds动画

CABasicAnimation *boundsAnimation = [CABasicAnimation animationWithKeyPath:@"bounds"];

//    因为bounds是CGRect类型 不是对象 所以要转一下

boundsAnimation.fromValue = [NSValue valueWithCGRect:self.imageLayer.bounds];

boundsAnimation.toValue = [NSValue valueWithCGRect:CGRectMake(self.view.frame.size.width / 4, self.view.frame.size.width / 4, self.view.frame.size.width / 2, self.view.frame.size.height / 2)];

boundsAnimation.duration = 2.0f;

//将动画组合起来

CAAnimationGroup *groupAnimation = [CAAnimationGroup animation];

groupAnimation.animations = @[contentsAnimation,boundsAnimation];

groupAnimation.duration = 2.0f;

//    执行完之后又会回到原来的状态,因为layer只是提交了动画,并没有修改layer的内容  只是一段过程 所以结束了之后要设定layer的内容

self.imageLayer.contents = (__bridge id _Nullable)(image2.CGImage);

self.imageLayer.bounds = CGRectMake(self.view.frame.size.width / 4, self.view.frame.size.width / 4, self.view.frame.size.width / 2, self.view.frame.size.height / 2);

[self.imageLayer addAnimation:groupAnimation forKey:nil];

}

}

@end

进度条代码如下:

@interface ProgressViewController ()

@property (nonatomic, strong) ProgressView *progressView;

@property (nonatomic, strong) NSTimer *timer;

@end

@implementation ProgressViewController

- (void)viewDidLoad {

[super viewDidLoad];

self.view.backgroundColor = [UIColor whiteColor];

self.progressView = [[ProgressView alloc] initWithFrame:CGRectMake(20, 300, 300, 3)];

//设置进度条颜色

self.progressView.layerColor = [UIColor blueColor];

//设置边框大小

self.progressView.layer.borderWidth = 1.0;

//设置边框颜色

//    self.progressView.layer.borderColor = [UIColor redColor].CGColor;

[self.view addSubview:self.progressView];

self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(layerAnimation) userInfo:nil repeats:YES];

}

- (void)layerAnimation{

//模拟下载进度

self.progressView.progress = arc4random() %100 / 100.f;

}

@end



.h

@interface ProgressView : UIView

@property (nonatomic, assign) CGFloat progress;//进度参数

@property (nonatomic, strong) UIColor *layerColor;//颜色

@end

.m

@interface ProgressView()

@property (nonatomic, strong) CALayer *progressLayer;

//这个记录当前这个进度条的宽度

@property (nonatomic, assign) CGFloat currentWidth;

@end

@implementation ProgressView

- (instancetype)initWithFrame:(CGRect)frame

{

self = [super initWithFrame:frame];

if (self) {

//        如果是用View自带的layer设置则不会有隐式动画

//        创建出一个独立的layer则有

self.progressLayer = [CALayer layer];

self.progressLayer.frame = CGRectMake(0, 0, 0, frame.size.height);

self.progressLayer.backgroundColor = [UIColor redColor].CGColor;

[self.layer addSublayer:self.progressLayer];

self.currentWidth = frame.size.width;

}

return self;

}

#pragma mark ----set get

@synthesize progress = _progress;

- (void)setProgress:(CGFloat)progress{

_progress = progress;

if (progress <= 0) {

self.progressLayer.frame = CGRectMake(0, 0, 0, self.frame.size.height);

}else if (progress <= 1){

//        进度 * 总宽度 得到对应的宽度

self.progressLayer.frame = CGRectMake(0, 0, self.currentWidth * progress, self.frame.size.height);

}else{

self.progressLayer.frame = CGRectMake(0, 0, self.currentWidth, self.frame.size.height);

}

}

- (CGFloat)progress{

return _progress;

}

@synthesize layerColor = _layerColor;

- (void)setLayerColor:(UIColor *)layerColor{

_layerColor = layerColor;

self.progressLayer.backgroundColor = layerColor.CGColor;

}

- (UIColor *)layerColor{

return _layerColor;

}

@end

注意 遮罩图片最好是有透明通道的,没有的话也可以用背景颜色来设置。

源代码 和图片放在提示信息 - Code4App-iOS开发-iOS 开源代码库-iOS代码实例搜索-iOS特效示例-iOS代码例子下载-Code4App.com - Powered by Discuz! 

代码参考了YouXianMing - 博客园大神写的


希望可以帮助到有需要的人,感谢开源。

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

推荐阅读更多精彩内容

  • Core Animation其实是一个令人误解的命名。你可能认为它只是用来做动画的,但实际上它是从一个叫做Laye...
    小猫仔阅读 3,675评论 1 4
  • 一、CAShapelayer 我们知道可以不使用图片情况下利用CGpath去构建任意形状的阴影。其实我们也可...
    小猫仔阅读 1,411评论 0 5
  • VLC的集成和使用 VLC介绍 VLC Media Player (VideoLAN) 为 Windows、Lin...
    Pocket阅读 19,439评论 75 66
  • Core Animation是一个复合引擎,它的职责就是尽可能快地组合屏幕上不同的可视内容,这个内容是被分解成独立...
    abb266389fd0阅读 1,107评论 2 17
  • #晚安#很多人都说:我不知道我自己想要什么。其实这句话的真正含义是:我没有勇气面对和足够的努力去争取我想要的。
    鬼鬼灰灰是我阅读 219评论 0 0