首页 > 其他 > 详细

开源项目:MMTweenAnimation

时间:2015-09-24 10:43:41      阅读:228      评论:0      收藏:0      [点我收藏+]

本文转载至 http://adad184.com/2015/04/14/opensource-mmtweenanimation/

前言


MMTweenAnimation其实酝酿了有一段时间了 起因是对POP重度使用后(POP上手教程) 感到的一丝不足

  • 首先 POP提供的自带动画类型太少(比如想实现如下图的物体落地的动画)
  • 其次 除了POPBasicAnimation之外 无法控制动画的duration

技术分享

所以趁着休陪产假的空档 研究并做出了MMTweenAnimation的第一版

介绍


MMTweenAnimation 是基于Facebook的POP的动画扩展类 提供10种不同的函数动画

BackBounceCircCubicElastic
技术分享 技术分享 技术分享 技术分享 技术分享
ExpoQuadQuartQuintSine
技术分享 技术分享 技术分享 技术分享 技术分享

建议使用cocoapod安装

1
pod ‘MMTweenAnimation‘

 

使用方式如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MMTweenAnimation *anim = [MMTweenAnimation animation];
anim.functionType = MMTweenFunctionBounce;
anim.easingType = MMTweenEasingOut;
anim.duration = 2.0f;
anim.fromValue = 0;
anim.toValue = 200;
anim.animationBlock = ^(double c,double d,double v,id target,MMTweenAnimation *animation)
{
//c: current time, from the beginning of animation
//d: duration, always bigger than c
//v: value, after the change at current time

UIView *t = (UIView*)target;
t.center = CGPointMake(t.x, v);
};

[targetView pop_addAnimation:anim forKey:@"center.y"];

小结


库中的动画函数部分借鉴自tweener, 同时有个很棒的网站对这些动画进行了展示

后续可能还会添加一些功能 比如

  • 提供更多类型的动画函数
  • 提供用户自定义的动画函数
  • 动画函数的系数可调节

开源项目:MMTweenAnimation

原文:http://www.cnblogs.com/Camier-myNiuer/p/4834465.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!