
iOS 动画
allanGold
这个作者很懒,什么都没留下…
展开
-
【粒子动画】iOS流星雨效果如何实现
流星雨粒子动画原创 2022-10-24 18:02:27 · 617 阅读 · 0 评论 -
【提示动画】左右滑动或者说左右晃动
// 利用关键帧实现一种类似(渐入)渐出的效果 CAKeyframeAnimation *kfa = [CAKeyframeAnimation animation]; kfa.keyPath = @"transform.translation.x"; CGFloat s = 16;// kfa.values = @[@(-s),@(0),@(s),@(0),@(-s),@(0),@(s),@(0)]; kfa.values = @[@(-16),@(0),@(12).原创 2021-12-15 17:25:13 · 603 阅读 · 0 评论 -
一张图片实现无限滑动(类似走马灯)效果
上代码@interface ViewController ()@property (nonatomic, strong) UIImageView *iv1st;@property (nonatomic, strong) UIImageView *iv2nd;@end@implementation ViewController-(void)startMove{ UIImageView *iv1st = [[UIImageView alloc] init];原创 2021-12-11 21:52:25 · 1688 阅读 · 0 评论 -
iOS 跑马灯效果展示
@implementation ViewController- (void)viewDidLoad { [superviewDidLoad]; // Do any additional setup after loading the view, typically from a nib. self.contentView转载 2016-11-29 13:46:08 · 1478 阅读 · 0 评论 -
iOS KeyFrame动画
@interface CAKeyframeAnimation :CAPropertyAnimation@property(nullable,copy) NSArray *values;@property(nullable)CGPathRef path;@property(nullable,copy) NSArrayNSNumber *> *keyTimes;转载 2016-11-29 14:15:56 · 894 阅读 · 0 评论 -
iOS几个效果动画-------------------(实例详讲)qq粘性效果
http://www.cnblogs.com/superYou/p/4602057.html转载 2017-02-06 17:11:47 · 855 阅读 · 0 评论 -
iOS 渐变色 以及 镂空效果的实现(Mask的妙用)以及镂空文字的实现
实现起来也很简单,主要分3个步骤:1.创建一个镂空的路径: UIBezierPath 有个原生的方法- (void)appendPath:(UIBezierPath *)bezierPath, 这个方法作用是俩个路径有叠加的部分则会镂空. 这个方法实现原理应该是path的FillRule 默认是FillRuleEvenOdd(CALayer 有一个fillRule属性的转载 2016-11-17 14:51:11 · 8329 阅读 · 0 评论 -
动画 -- 从某个定点开始放大某个视图
参考:https://blog.youkuaiyun.com/yongyinmg/article/details/37927833https://www.jianshu.com/p/a5cd9ba42bad从某个定点开始放大某个视图- (void)animateApplyToView:(UIView *)view { NSString *keyPath = @"transf...转载 2018-11-16 18:01:46 · 1329 阅读 · 0 评论