博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[翻译] CHAnimation
阅读量:5158 次
发布时间:2019-06-13

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

CHAnimation

 

How it looks

 

 

CHAnimation is a project used to demonstrate how to write your own animation engine, inspired by , with only 600 lines of Objective-C you can understand.

 

You can also use this project to help learning .

 

CHAnimation是一个用来帮助你写你自己动画的引擎工具,受到了Facebook Pop的启发,只有600行的代码,你能够轻易的明白。

你也可以使用此工程来学习Facebook的Pop动画。

 

Requirements

 

CHAnimation requires Xcode 5, targeting either iOS 5.0 and above, ARC-enabled.

 

CHAnimation需要Xcode5,目标在iOS5.0以上,仅支持ARC。

 

Types

 

Unlike , CHAnimation supports only one animation type, that is linear animation. The main purpose of this project is to help developer understand how an animation engine works, so I tried my best to keep the code small and clean. I think if you finished reading the code of CHAnimation, you can add moretimingFunction as you want.

 

Currently, CHAnimation supports CGSizeCGPoint and NSNumber as animated values, you can add more types if you want.

 

不像Facebook Pop动画支持动画的类型多,CHAnimation支持得动画类型是线性动画类型。这个项目的主要动机是帮助开发者理解动画引擎如何工作的,所以我尽最大的努力来保持代码轻量以及清晰。我相信,如果你读完了这个代码,你已经可以根据需要随意添加 timingFunction 方法了。

当前,CHAnimation支持CGSize,CGPoint以及NSNumber作为动画的values,你可以根据你的需要添加更多类型。

 

How to use

 

CHAnimation adopts the Core Animation explicit animation programming model, the interfaces are almost the same:

CHAnimation兼容Core Animation显式动画模型,这个使用接口基本上是一样的:

 

#import "CHAnimation.h"CHAnimation *animation = [CHAnimation new];animation.duration = 0.4;animation.writeBlock = ^(id obj, id value) {    button.center = [value CGPointValue];};animation.fromValue = [NSValue valueWithCGPoint:CGPointMake(70, 70)];animation.toValue = [NSValue valueWithCGPoint:CGPointMake(170, 170)];[button ch_addAnimation:animation forKey:@"animation"];

 

 

Resources

 

A collection of links to external resources may help you to understand the code:

以下链接能帮助你理解这些代码:

 

 

转载于:https://www.cnblogs.com/YouXianMing/p/3826685.html

你可能感兴趣的文章
双系统更改启动顺序
查看>>
用参数较少的函数替换参数较多的函数
查看>>
【转】函数中的形参问题(指针形参、引用形参、二重指针作为形参)
查看>>
location对象查询字符串参数
查看>>
Python基础
查看>>
开发中用到的工具
查看>>
linux支持的machine-types
查看>>
(原)使用intel的ipp库计算卷积及相关
查看>>
Activity的Task详解
查看>>
[搬运工系列]-JMeter(三)参数传递
查看>>
最长公共子序列(动态规划)
查看>>
android开发系列日志--(3)
查看>>
面试题
查看>>
[转] Java se 7新特性研究(二)
查看>>
修改电脑hosts文件
查看>>
#TS# get/set
查看>>
移动端开发模式
查看>>
红黑树原理、AVL树区别
查看>>
MySQL->索引的维护[20180504]
查看>>
第三章知识梳理
查看>>