国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS 常用動畫

2019-11-09 17:49:33
字體:
來源:轉載
供稿:網友

CABasicAnimation基礎動畫

例如:

UIView *rotationViewX = [[UIView alloc]initWithFrame:CGRectMake(20, 100, 70, 70)]; rotationViewX.backgroundColor = VIEW_COLOR; [self.view addSubview:rotationViewX]; CABasicAnimation *rotationAnimationX = [CABasicAnimation animationWithKeyPath:@"transform.rotation.x"]; rotationAnimationX.beginTime = 0.0; rotationAnimationX.toValue = @(2*M_PI); rotationAnimationX.duration = 1.5; rotationAnimationX.repeatCount = HUGE_VALF; [rotationViewX.layer addAnimation:rotationAnimationX forKey:@"rotationAnimationX"];

基礎動畫常用的keypath: 這里寫圖片描述 設定動畫的屬性和說明: 這里寫圖片描述

CAKeyframeAnimation基礎動畫

CAKeyframeAnimation *orbitAnim = [CAKeyframeAnimation animationWithKeyPath:@"position"]; orbitAnim.duration = 5; orbitAnim.path = path.CGPath; orbitAnim.calculationMode = kCAAnimationPaced; orbitAnim.fillMode = kCAFillModeForwards; orbitAnim.repeatCount = HUGE_VALF; orbitAnim.rotationMode = kCAAnimationRotateAutoReverse; [animView.layer addAnimation:orbitAnim forKey:@"orbitAnim"];

畫線動畫、線條遞增、遞減動畫

CABasicAnimation *pathAnim = [CABasicAnimation animationWithKeyPath:@"strokeEnd"]; pathAnim.duration = 5.0; pathAnim.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaSEOut]; pathAnim.fromValue = @(0); pathAnim.toValue = @(1); pathAnim.autoreverses = YES; pathAnim.fillMode = kCAFillModeForwards; pathAnim.repeatCount = HUGE_VALF; [shapeLayer addAnimation:pathAnim forKey:@"strokeEndAnim"];

另還有彈性動畫,波浪效果,火苗效果,詳見demo: https://github.com/ZJQian/AnimationDemo/tree/master

這里寫圖片描述

共同學習,共同進步!


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 弋阳县| 阳高县| 吐鲁番市| 绥芬河市| 屯门区| 香河县| 根河市| 台北县| 乐至县| 常熟市| 庆云县| 南丹县| 汉阴县| 峨眉山市| 陵水| 延安市| 开原市| 安平县| 平定县| 祁阳县| 灵丘县| 平舆县| 清水河县| 阿图什市| 章丘市| 长汀县| 登封市| 日喀则市| 泗阳县| 博兴县| 徐汇区| 玉门市| 苏尼特右旗| 亳州市| 南陵县| 丁青县| 宁武县| 正定县| 隆化县| 崇阳县| 庆元县|