国产探花免费观看_亚洲丰满少妇自慰呻吟_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

這里寫圖片描述

共同學習,共同進步!


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 金溪县| 开江县| 河西区| 黄龙县| 大同县| 浏阳市| 江永县| 西昌市| 山丹县| 水城县| 西林县| 页游| 福州市| 牟定县| 杭锦旗| 海宁市| 桂平市| 东明县| 东源县| 新邵县| 余江县| 广饶县| 抚州市| 徐汇区| 岢岚县| 兰西县| 三原县| 梨树县| 南川市| 兴海县| 招远市| 营山县| 新龙县| 麻栗坡县| 贡嘎县| 南雄市| 华阴市| 巨鹿县| 抚松县| 东至县| 武功县|