x轴缩放:CABasicAnimation *theAnimation;theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.scale.x"];theAnimation.duration=8;theAnimation.rem...
分类:
移动开发 时间:
2015-12-13 20:13:30
阅读次数:
134
// 一般的我们添加一个视图到父视图都是通过 /* let v1 = UIView(frame:CGRectMake(100,200,30,50)) self.view.addSubview(v1) // self...
分类:
编程语言 时间:
2015-12-09 13:28:51
阅读次数:
2692
1. 缩放CABasicAnimation *theAnimation=[CABasicAnimation animationWithKeyPath:@"transform"]; //x,y,z放大缩小倍数 CATransform3D transform=CATransform3DMakeScal....
分类:
其他好文 时间:
2015-11-27 21:37:26
阅读次数:
547
CABasicAnimation是CAPropertyAnimation的子类,使用它可以实现一些基本的动画效果,它可以让CALayer的某个属性从某个值渐变到另一个值。下面就用CABasicAnimation实现几个简单的动画。* 先初始化一个UIView添加到控制器的view中,然后在这个UIV...
分类:
其他好文 时间:
2015-11-25 06:37:25
阅读次数:
209
1 //设置旋转 2 let rotationAnimation:CABasicAnimation = CABasicAnimation(keyPath: "transform.rotation.z") 3 //rotationAnimation.toValue...
分类:
其他好文 时间:
2015-11-04 13:18:21
阅读次数:
760
一、编写一个简单的动画,使一个UIview从屏幕的左上角移动到左下角,间隔时间3S//// ViewController.m// CAAnimationTest//// Created by on 15-10-27.// Copyright (c) 2015年 va. All rights ...
分类:
其他好文 时间:
2015-10-28 06:55:58
阅读次数:
404
【原】iOSCoreAnimation动画系列教程(二):CAKeyFrameAnimation【包会】 在上一篇专题文章【原】iOSCoreAnimation动画系列教程(一):CABasicAnimation【包会】中我们学习了iOS核心动画CoreAnimation中CABasicAnima....
分类:
其他好文 时间:
2015-10-27 11:27:29
阅读次数:
223
一.CABasicAnimation (基础动画)移位: CABasicAnimation *animation = [CABasicAnimation animation]; //keyPath指定动画类别,position表示移位 animation.keyPath = @"p...
分类:
移动开发 时间:
2015-10-18 15:21:12
阅读次数:
209
CAKeyframeAnimation——关键帧动画关键帧动画,也是CAPropertyAnimation的子类,与CABasicAnimation的区别是:–CABasicAnimation只能从一个数值(fromValue)变到另一个数值(toValue),而CAKeyframeAnimatio...
分类:
移动开发 时间:
2015-10-16 23:12:54
阅读次数:
828
基本动画,是CAPropertyAnimation的子类属性说明:fromValue:keyPath相应属性的初始值toValue:keyPath相应属性的结束值动画过程说明:随着动画的进行,在长度为duration的持续时间内,keyPath相应属性的值从fromValue渐渐地变为toValue...
分类:
移动开发 时间:
2015-10-16 20:21:46
阅读次数:
931