博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CABasicAnimation 脉冲效果
阅读量:5738 次
发布时间:2019-06-18

本文共 947 字,大约阅读时间需要 3 分钟。

1     UIImage *image = [UIImage imageNamed:@"heart.png"]; 2     CALayer *layer = [CALayer layer]; 3     layer.contents = (id)image.CGImage; 4     layer.bounds = CGRectMake(0, 0, image.size.width, image.size.height); 5     layer.position = CGPointMake(160, 200); 6  7     layer.transform = CATransform3DMakeScale(0.90, 0.90, 1);  // 将图片大小按照X轴和Y轴缩放90%,永久 8     [self.view.layer addSublayer:layer]; 9     10     CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform"];11     animation.toValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; // 将目标值设为原值12     animation.autoreverses = YES; // 自动倒回最初效果13     animation.duration = 0.35;14     animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];15     animation.repeatCount = HUGE_VALF;16     [layer addAnimation:animation forKey:@"pulseAnimation"];

 

转载于:https://www.cnblogs.com/sell/archive/2013/02/08/2909440.html

你可能感兴趣的文章
经验分享:JavaScript小技巧
查看>>
[MOSEK] Stupid things when using mosek
查看>>
程序实例---栈的顺序实现和链式实现
查看>>
服务的使用
查看>>
Oracle 用户与模式
查看>>
MairDB 初始数据库与表 (二)
查看>>
拥在怀里
查看>>
chm文件打开,有目录无内容
查看>>
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>
桌面支持--打不开网页上的pdf附件解决办法(ie-tools-compatibility)
查看>>
nagios监控windows 改了NSclient++默认端口 注意事项
查看>>
干货 | JAVA代码引起的NATIVE野指针问题(上)
查看>>
POI getDataFormat() 格式对照
查看>>
Python 中的进程、线程、协程、同步、异步、回调
查看>>
好的产品原型具有哪些特点?
查看>>
实现java导出文件弹出下载框让用户选择路径
查看>>
刨根问底--技术--jsoup登陆网站
查看>>
OSChina 五一劳动节乱弹 ——女孩子晚上不要出门,发生了这样的事情
查看>>
Spring--通过注解来配置bean
查看>>