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

首頁 > 系統 > iOS > 正文

iOS 常用動畫

2019-11-09 16:48:50
字體:
來源:轉載
供稿:網友

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

這里寫圖片描述

共同學習,共同進步!


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 芦山县| 黄石市| 苍溪县| 锡林郭勒盟| 蓝田县| 金寨县| 西乌珠穆沁旗| 仙游县| 禄劝| 庆元县| 通许县| 姚安县| 沾化县| 本溪市| 会东县| 建湖县| 锡林郭勒盟| 金川县| 柳林县| 甘谷县| 当阳市| 张掖市| 莲花县| 洪湖市| 临西县| 新和县| 玛多县| 汶川县| 巫溪县| 镇江市| 稷山县| 池州市| 大宁县| 平安县| 丘北县| 东宁县| 蓬溪县| 扎鲁特旗| 平昌县| 独山县| 威信县|