个人中心波浪特效

相信很多人见过app个人中心的波浪动画效果吧,是不是觉得很酷?
接下来,我会给大家分享一个实现的思路。
先上图,看看效果。


jswave.gif

忽略掉这个晃眼的红色(毕竟只是用来做示例),这个波浪效果很带感吧。

简单原理,CAShapeLayer 结合CGPath绘制图形。
动画操作的是CAShapeLayer(CALayer的子类)层,而非直接操作UIView。
CAShapeLayer在渲染速度,显示效果,内存占用,资源消耗上均有不小优势。对于CALayer和UIView的区别以及CAShapeLayer不是很了解的读者,可以阅读我在文章结尾附上的相关知识链接。

看代码实现部分
<pre><code>
@interface ZSWave : UIView

@property (nonatomic, assign) CGFloat waveSpeed;//浪弯曲度

@property (nonatomic, assign) CGFloat speed;//浪速

@property (nonatomic, assign) CGFloat waveHeight;//浪高

@property (nonatomic, strong) UIColor *realWaveColor;//实浪颜色

@property (nonatomic, strong) UIColor *maskWaveColor;//遮罩浪颜色

@property (nonatomic, strong) UIView *headerImageWallView;//头像父视图

- (void)stopWaveAnimation;

- (void)startWaveAnimation;

@end
</pre></code>
<pre><code>
@interface ZSWave ()

@property (nonatomic, strong) CADisplayLink *timer;//刷屏器

@property (nonatomic, strong) CAShapeLayer *realWaveLayer;//真实浪

@property (nonatomic, strong) CAShapeLayer *maskWaveLayer;//遮罩浪

@property (nonatomic, assign) CGFloat offset;

@end

</pre></code>
<pre><code>
- (instancetype)initWithFrame:(CGRect)frame
{
if ([super initWithFrame:frame]) {
[self initData];
}
return self;
}

- (void)initData{

[self.layer addSublayer:self.realWaveLayer];
[self.layer addSublayer:self.maskWaveLayer];
[self addSubview:self.headerImageWallView];

[self startWaveAnimation];

}

- (void)startWaveAnimation{

self.timer = [CADisplayLink displayLinkWithTarget:self selector:@selector(wave)];
[self.timer addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];

}

- (void)stopWaveAnimation{

[self.timer invalidate];
self.timer = nil;

}

</pre></code>

核心代码

<pre><code>
- (void)wave{

[self layoutIfNeeded];

self.offset += self.speed;

CGFloat width = CGRectGetWidth(self.frame);
CGFloat height = CGRectGetHeight(self.frame);

//真实浪
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint(path, NULL, 0, height );
CGFloat y = 0.f;
for (CGFloat x = 0.f; x <= width ; x++) {
    y = height * sinf(0.01 * self.waveSpeed * x + self.offset * 0.045);
    CGPathAddLineToPoint(path, NULL, x, y);
}

CGFloat centX = self.center.x;
CGFloat CentY = height * sinf(0.01 * self.waveSpeed *centX  + self.offset * 0.045);
CGRect iconFrame = [self.headerImageWallView frame];
iconFrame.origin.y = CentY - iconFrame.size.height;
self.headerImageWallView.frame  =iconFrame; //调整头像位置,随波浪运动
CGPathAddLineToPoint(path, NULL, width, height);
CGPathAddLineToPoint(path, NULL, 0, height);
CGPathCloseSubpath(path);
self.realWaveLayer.path = path;
self.realWaveLayer.fillColor = self.realWaveColor.CGColor;
CGPathRelease(path);
//遮罩浪
CGMutablePathRef maskpath = CGPathCreateMutable();
CGPathMoveToPoint(maskpath, NULL, 0, height);
CGFloat maskY = 0.f;
for (CGFloat x = 0.f; x <= width ; x++) {
    maskY = height * cosf(0.01 * self.waveSpeed * x + self.offset * 0.045);
    CGPathAddLineToPoint(maskpath, NULL, x, maskY);
}
CGPathAddLineToPoint(maskpath, NULL, width, height);
CGPathAddLineToPoint(maskpath, NULL, 0, height);
CGPathCloseSubpath(maskpath);
self.maskWaveLayer.path = maskpath;
self.maskWaveLayer.fillColor = self.maskWaveColor.CGColor;
CGPathRelease(maskpath);

}

</pre></code>
默认属性设置及初始化
<pre><code>
#pragma mark - Initialize parameter

- (CGFloat)waveSpeed {

if (!_waveSpeed) {
    _waveSpeed = 1.5;
}
return _waveSpeed;

}

- (CGFloat)speed {

if (!_speed) {
    _speed = 0.7;
}
return _speed;

}

- (CGFloat)waveHeight {

if (!_waveHeight) {
    _waveHeight = 5;
}
return _waveHeight;

}

- (UIColor *)realWaveColor {

if (!_realWaveColor) {
    _realWaveColor = [UIColor whiteColor];
}
return _realWaveColor;

}

- (UIColor *)maskWaveColor {

if (!_maskWaveColor) {
    _maskWaveColor = [[UIColor whiteColor]colorWithAlphaComponent:0.3];
}
return _maskWaveColor;

}

#pragma mark - lazy loading

- (CAShapeLayer *)realWaveLayer{

if (!_realWaveLayer) {
    _realWaveLayer = [CAShapeLayer layer];
    _realWaveLayer.frame =  self.bounds;
    _realWaveLayer.fillColor = self.realWaveColor.CGColor;
    
}
return _realWaveLayer;

}

- (CAShapeLayer *)maskWaveLayer{

if (!_maskWaveLayer) {
    _maskWaveLayer = [CAShapeLayer layer];
    _maskWaveLayer.frame =  self.bounds;
    _maskWaveLayer.fillColor = self.maskWaveColor.CGColor;
}
return _maskWaveLayer;

}

- (UIView *)headerImageWallView {

if (!_headerImageWallView) {
    _headerImageWallView = [[UIView alloc]initWithFrame:CGRectMake(self.center.x - 30, -60, 60, 60)];
    _headerImageWallView.layer.borderColor = [UIColor whiteColor].CGColor;
    _headerImageWallView.layer.borderWidth = 2;
    _headerImageWallView.layer.cornerRadius = 20;
}
return _headerImageWallView;

}

</pre></code>
最后一定记得重写dealloc,把定时器注销。
<pre><code>
- (void)dealloc{

[self stopWaveAnimation];

}
</pre></code>
参考资料CADisplayLinkCALayer和UIView的区别

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 会议开始之前我们先来回顾一下学习千里马的点点滴滴 千里马河南战区陈国鹏大将军为伟仕商贸主持60天启动大会!从9月份...
    河南千里马阅读 646评论 0 1
  • 原计划第二天下午,就入村给当地的老乡剥莲子。大中午出去转了一圈,却没有找到需要帮忙的人家。老乡说早上才有莲子...
    伏羲师范熊芳阅读 917评论 0 1
  • 前不久到一处学校看管理情况,发现学校还存在一些脏乱的地方,校长对我说,等搬到新楼上以后我好好抓一抓。我说你这...
    松峰说教刘树森阅读 266评论 0 1
  • 我永远都知道这样抱怨没有任何效果 可我就是忍不了 好像这世界上的每个人 ‌不抱怨就活不了
    111林昼歌阅读 96评论 0 0