***#import "HMViewController.h"#define angle2radian(x) ((x) / 180.0 * M_PI)@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIImageV...
分类:
移动开发 时间:
2015-09-06 18:21:56
阅读次数:
175
*******#import "HMViewController.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIView *redView;@end@implementation HMViewContro...
分类:
移动开发 时间:
2015-09-06 17:53:37
阅读次数:
191
CAKeyframeAnimation *shakeAnim = [CAKeyframeAnimation animation];shakeAnim.keyPath = @"transform.translation.x";shakeAnim.duration = 0.15;CGFloat delt...
分类:
移动开发 时间:
2015-08-31 21:28:23
阅读次数:
252
CSS3与CSS2相比发生了很大的变化,CSS3的亮点功能包括实现圆角、阴影、新的flex伸缩布局模型、多列布局模型、填充色的渐变、2D变形(位移、缩放、旋转、倾斜)、3D变形、动画(transition过渡动画、animation关键帧动画)等。看到这些字眼,你实际上已经可以深深感受到CSS3的野...
分类:
Web程序 时间:
2015-08-15 16:15:57
阅读次数:
102
核心动画基于QuartzCore框架,只能用于CALayer,可以实现3D效果,它在子线程中执行动画,不会阻塞主线程。
要实现核心动画,主要使用CABasicAnimation实现单步动画、使用CAKeyframeAnimation实现帧动画。
动画的主要属性有duration、keyPath、value、repeatCount等。
动画执行完毕后默认会复位,要取消复位,需要以下两行代码:
...
分类:
其他好文 时间:
2015-08-12 23:38:46
阅读次数:
126
动画(Animation),是CSS3的亮点.//之一通过animation属性指定@keyframe来完成关键帧动画;@keyframe用法: @keyframes name { 0% { top: 0; }/*0%可用from关键字替代*/ 50% { top: 10px; } 100%...
分类:
Web程序 时间:
2015-08-03 18:36:05
阅读次数:
146
一.组动画的创建首先创建一个组动画,也就是大小变化和透明度变化的动画。// 大小变化
let scaleAnimation = CAKeyframeAnimation(keyPath: "transform.scale") scaleAnimation.keyTimes = [0, 0.5, 1]
scaleAnimation.values = [1,...
分类:
编程语言 时间:
2015-07-30 17:05:52
阅读次数:
279
最近iOS开发中用到CoreAnimation的framework来做动画效果,虽然以前也用过,但一直没有系统学习过,今天看到一篇非常详细的博文(虽然是日语,但真的写的很好),在此翻译出来供大家学习。CABasicAnimation类的使用方式就是基本的关键帧动画。所谓关键帧动画,就是将Layer的...
分类:
移动开发 时间:
2015-07-28 18:12:29
阅读次数:
149
本篇只要讲解iOS中动画的使用.
Animtion主要分为两类:UIView动画和CoreAnimation动画。
UIView动画有UIView属性动画,UIViewBlock动画,UIViewTransition动画。
而CoreAnimation动画主要通过CAAnimation和CALayer,常用的有CABasicAnimation,CAKeyframeAnimation,......
分类:
移动开发 时间:
2015-07-28 14:38:32
阅读次数:
227
效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @property (strong, nonatomic) IBOutlet UIImageView *imgVAnimation;5 @...
分类:
其他好文 时间:
2015-07-28 06:33:33
阅读次数:
177