时间:2021-05-02
先看下最后基本要实现的效果
总结一下自己的实现思路与所用到的类
1.这个肯定是要自定义的View类,起名为XDColorCircle吧,最后用的时候达到这样的效果
? 1 2 3 4 //创建XDColorCircle的实例化对象 XDColorCircle *circle=[[XDColorCircle alloc]initWithFrame:CGRectMake(0 ,100,self.view.frame.size.width,200)]; //添加到视图上展示 [self.view addSubview:circle];2.然后就是在XDColorCircle里面代码思路
3.思路捋顺代码就很方便
? 1 2 3 4 5 6 7 8 //先都写在这个构造方法里面吧 - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { } return self; }创建圈圈所在的View
? 1 2 3 4 5 self.backgroundColor=[UIColor clearColor]; UIView *circleView=[[UIView alloc]init]; circleView.frame=CGRectMake(0, 0,frame.size.width,frame.size.height); circleView.backgroundColor=[UIColor blueColor]; [self addSubview: circleView];创建渐变图层并添加到圈圈视图
? 1 2 3 4 5 6 7 CAGradientLayer * gradientLayer = [CAGradientLayer layer]; gradientLayer.colors = @[(__bridge id)[UIColor whiteColor].CGColor,(__bridge id)[UIColor cyanColor].CGColor]; gradientLayer.locations = @[@0.2,@1.0]; gradientLayer.startPoint = CGPointMake(0, 0); gradientLayer.endPoint = CGPointMake(1.0, 0); gradientLayer.frame =CGRectMake(0, 0, self.frame.size.width, self.frame.size.height); [circleView.layer insertSublayer:_gradientLayer atIndex:0];添加mask属性只让图层只显示一个圈圈
? 1 2 3 4 5 6 7 8 9 CAShapeLayer *layer=[[CAShapeLayer alloc]init]; CGMutablePathRef pathRef=CGPathCreateMutable(); CGPathAddRelativeArc(pathRef, nil,frame.size.width/2.0,frame.size.height/2.0,frame.size.width<frame.size.height?frame.size.width/2.0-5:frame.size.height/2.0-5,0, 2*M_PI); layer.path=pathRef; layer.lineWidth=5; layer.fillColor=[UIColor clearColor].CGColor; layer.strokeColor=[UIColor blackColor].CGColor; CGPathRelease(pathRef); circleView.layer.mask=layer;让圈圈转起来添加动画
? 1 2 3 4 5 6 7 8 9 10 CABasicAnimation *animation=[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; ; // 设定动画选项 animation.duration = 1; animation.removedOnCompletion = NO; animation.fillMode = kCAFillModeForwards; animation.repeatCount =HUGE_VALF; // 设定旋转角度 animation.fromValue = [NSNumber numberWithFloat:0.0]; // 起始角度 animation.toValue = [NSNumber numberWithFloat:2 * M_PI]; // 终止角度 [circleView.layer addAnimation:animation forKey:@"rotate-layer"];添加中间的大文字Label
? 1 2 3 4 5 6 7 UILabel *label=[[UILabel alloc]init]; label.text=@"测试中"; label.font=[UIFont systemFontOfSize:32]; label.textAlignment=NSTextAlignmentCenter; label.frame=CGRectMake(0, 0,frame.size.width,frame.size.height); label.backgroundColor=[UIColor clearColor]; [self addSubview:label];4.然后在controller里面使用
? 1 2 3 4 //创建XDColorCircle的实例化对象 XDColorCircle *circle=[[XDColorCircle alloc]initWithFrame:CGRectMake(0 ,100,self.view.frame.size.width,200)]; //添加到视图上展示 [self.view addSubview:circle];
只是个简单的动画实现小例子,可以看出活用CAShapeLayer和CABasicAnimation可以做出更炫的动画效果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/94450a41b10b?utm_source=tuicool&utm_medium=referral
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
效果图实现思路1.首先通过HTML+CSS实现加载动画的静态效果;2.根据需求给每个动画设计不同的动画效果。例如第一个加载图标的静态绘制1、首先确定动画的盒子宽
ios中uiimageview方法实现简单动画查阅uiimageview文档时,发现uiimageview有一组关于动画的方法/参数,可以实现简单的动画。包括:
本文实例讲述了PHP仿tp实现mvc框架基本设计思路与实现方法。分享给大家供大家参考,具体如下:仿tpmvc基本设计与简单实现一:文件加载常识变量常量函数类文件
iOS基本动画/关键帧动画/利用缓动函数实现物理动画效果先说下基本动画部分基本动画部分比较简单,但能实现的动画效果也很局限使用方法大致为:#1.创建原始UI或者
前言一个简单的利用透明度和缩放实现的数字倍数动画效果图:实现思路上代码看比较清晰//数字跳动动画-(void)labelDanceAnimation:(NSTi