将水波效果放在子视图上,主控制器只负责加载
#import "WaveProgress.h"
@interface WaveProgress ()
@property (nonatomic,assign)CGFloat yHeight;/**< 当前进度对应的y值,由于y是向下递增,所以要注意 */
@property (nonatomic,assign)CGFloat offset;/**< 偏移量,决定了这个点在y轴上的位置,以此来实现动态效果*/
@property (nonatomic,strong)CADisplayLink * link;/**< 定时器*/
@property (nonatomic,strong)CAShapeLayer * waveLayer;/**< 水波的layer */
@property (nonatomic,assign)CGFloat speed;/**< 波动的速度*/
@property (nonatomic,strong)UIColor * waveColor;
@property (nonatomic,assign)CGFloat waveHeight;
@end
@implementation WaveProgress
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.layer.borderColor = [UIColor lightGrayColor].CGColor;
self.layer.borderWidth = 1.0f;
self.waveHeight = 5.0;
self.speed = 1.0;
self.waveColor = [UIColor greenColor];
self.waveLayer = [CAShapeLayer layer];
self.waveLayer.frame = self.bounds;
self.waveLayer.fillColor = [UIColor whiteColor].CGColor;
[self.layer addSublayer:self.waveLayer];
//由于y坐标轴的方向是由上向下,逐渐增加的,所以这里对于y坐标进行处理
self.yHeight = self.bounds.size.height * 0.2;
//先停止动画,然后在开始动画,保证不会有什么冲突和重复.
[self stopWaveAnimation];
[self startWaveAnimation];
}
return self;
}
#pragma mark -- 开始波动动画
- (void)startWaveAnimation
{
//相对于NSTimer CADisplayLink更准确,每一帧调用一次.
self.link = [CADisplayLink displayLinkWithTarget:self selector:@selector(waveAnimation)];
[self.link addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
}
#pragma mark -- 停止波动动画
- (void)stopWaveAnimation
{
[self.link invalidate];
self.link = nil;
}
#pragma mark -- 波动动画实现
- (void)waveAnimation
{
CGFloat waveHeight = self.waveHeight;
//如果是0或者1,则不需要wave的高度,否则会看出来一个小的波动.
// if (self.progress == 0.0f || self.progress == 1.0f) {
// waveHeight = 0.f;
// }
//累加偏移量,这样就可以通过speed来控制波动的速度了.对于正弦函数中的各个参数,你可以通过上面的注释进行了解.
self.offset += self.speed;
CGMutablePathRef pathRef = CGPathCreateMutable();
CGFloat startOffY = waveHeight * sinf(self.offset * M_PI * 2 / self.bounds.size.width);
CGFloat orignOffY = 0.0;
CGPathMoveToPoint(pathRef, NULL, 0, startOffY);
for (CGFloat i = 0.f; i <= self.bounds.size.width; i++) {
orignOffY = waveHeight * sinf(2 * M_PI / self.bounds.size.width * i + self.offset * M_PI * 2 / self.bounds.size.width) + self.yHeight;
CGPathAddLineToPoint(pathRef, NULL, i, orignOffY);
}
//连接四个角和以及波浪,共同组成水波.
CGPathAddLineToPoint(pathRef, NULL, self.bounds.size.width, orignOffY);
CGPathAddLineToPoint(pathRef, NULL, self.bounds.size.width, self.bounds.size.height);
CGPathAddLineToPoint(pathRef, NULL, 0, self.bounds.size.height);
CGPathAddLineToPoint(pathRef, NULL, 0, startOffY);
CGPathCloseSubpath(pathRef);
self.waveLayer.path = pathRef;
self.waveLayer.fillColor = self.waveColor.CGColor;
CGPathRelease(pathRef);
}
@end
在主控制器中就懒加载一次就可以
- (WaveProgress *)progressView
{
if (!_progressView) {
_progressView = [[WaveProgress alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 150)];
}
return _progressView;
}
效果图如下
iOS 水波效果的更多相关文章
-
【转】提示框第三方库之MBProgressHUD iOS toast效果 动态提示框效果
原文网址:http://www.zhimengzhe.com/IOSkaifa/37910.html MBProgressHUD是一个开源项目,实现了很多种样式的提示框,使用上简单.方便,并且可以对显 ...
-
Android仿IOS回弹效果 ScrollView回弹 总结
Android仿IOS回弹效果 ScrollView回弹 总结 应项目中的需求 须要仿IOS 下拉回弹的效果 , 我在网上搜了非常多 大多数都是拿scrollview 改吧改吧 试了一些 发现总 ...
-
Android 实现高仿iOS桌面效果之可拖动的GridView(上)
转载请标明出处:http://blog.csdn.net/sk719887916/article/details/40074663,作者:skay 最近项目中遇到一个LIstview的拖动效 ...
-
iOS 波浪效果的实现
iOS 波浪效果的实现 p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #4f8187; background-c ...
-
canvas三角函数模拟水波效果
.katex { display: block; text-align: center; white-space: nowrap; } .katex-display > .katex > ...
-
Unity3D Shader水波效果
水波效果 Shader "Custom/WaterWave" { Properties { _MainTex ("Base (RGB)", 2D) = &quo ...
-
使用js实现水波效果
使用到的工具:jQuery Ripples Plugin 下载安装 git clone https://github.com/sirxemic/jquery.ripples.git 引入jquery, ...
-
【iOS系列】- iOS吸附效果的实现 之 UICollectionView的使用全解
[iOS系列]- iOS吸附效果的实现 之 UICollectionView的使用全解 UICollectionView可以做很多的布局,在iOS开发中较为重要,所以这里就以实例来讲解UICollec ...
-
css3之水波效果
这些效果可谓多种多样,当然用canvas.svg也都能实现奈何对这些有不熟悉(尴尬),不过咱们用css来写貌似也没想象中的那么难吧. 一 悬浮球水波效果 效果图 css .container { w ...
随机推荐
-
canvas初体验之加载图片
上一篇的介绍主要是画一些基本的图案,这一篇主要是加载图案. canvas加载图片主要分为两个步骤: 1.获取图片资源. 2.将图片资源画到画布上. 1.1获取图片资源,canvasAPI为我们提供了多 ...
-
mysql 中的bool值
boolean在MySQL里的类型为tinyint(1) 很奇怪.
-
[book]awesome-machine-learning books
https://github.com/josephmisiti/awesome-machine-learning/blob/master/books.md Machine-Learning / Dat ...
-
Android怎么让一个service开机自动启动
1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次. 2. ...
-
SE 2014年4月17日
描述BGP路由属性 MED.首选值 的特点 MED相当于IGP协议中的度量值,在其他条件相同时,当本自治系统有多条到达外部自治系统的链路时,MED值小的路由优选.MED属性只能在两个自治系统间传递. ...
-
Codeforces Round#297 div2
B: 题意:给定一个字符串,然后给定m个数字 对于每个数字ai的含义是,将ai到n-ai+1的字符串给翻转一遍. 要求输出m次翻转之后的字符串. 想法就是判断第i个位置的字符是翻转了奇数次,还是偶数次 ...
-
No CurrentSessionContext configured 异常解决
Exception in thread "main" org.hibernate.HibernateException: No CurrentSessionContext conf ...
-
Meta标签中的format-detection属性及含义让IPHONE的数字可以改变颜色
format-detection翻译成中文的意思是“格式检测”,顾名思义,它是用来检测html里的一些格式的,那关于meta的format-detection属性主要是有以下几个设置: meta na ...
-
【SqlServer系列】集合运算
1 概述 已发布[SqlServer系列]文章如下: [SqlServer系列]SQLSERVER安装教程 [SqlServer系列]数据库三大范式 [SqlServer系列]表单查询 [SqlS ...
-
用js脚本一键下载网页所有图片
年前这两天稍微闲一点了,琢磨了一点js脚本,功能是把当前网页页面上的所有图片一次性保存到本地,免得每次都要对图片右键保存. 测试环境:Chrome开发者模式下(启动Chrome,按F12即可) 测试网 ...