- (void)drawLine{
//view是曲线的背景view
UIView *view = [[UIView
alloc]initWithFrame:CGRectMake(10,
0, 300, 300)];
view.backgroundColor = [UIColor
whiteColor];
[self.view
addSu...
分类:
其他好文 时间:
2014-08-22 10:55:07
阅读次数:
150
x轴缩放:CABasicAnimation *theAnimation;theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.scale.x"];theAnimation.duration=8;theAnimation.rem...
分类:
移动开发 时间:
2014-08-15 17:42:49
阅读次数:
374
个人写的一些样例://// ViewController.m// CABasicAnimationDemo//// Created by haotian on 14-6-13.// Copyright (c) 2014年 Baseus. All rights reserved.//#impo...
分类:
其他好文 时间:
2014-08-12 21:56:14
阅读次数:
401
一。图片旋转 CABasicAnimation* rotationAnimation; rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; rotationAnim...
分类:
移动开发 时间:
2014-08-12 13:08:54
阅读次数:
193
对Core Animation来说,不管是显式动画还是隐式动画,对其设置frame都是立即设置的,比如说给一个UIView做移动动画,虽然看起来frame在持续改变,但其时它的frame已经是最终值了,这种情况下,哪怕这个UIView是UIButton的实例,其触发touch事件的范围还是最终frame的地方。...
分类:
移动开发 时间:
2014-08-03 15:18:55
阅读次数:
194
CAlaye的动画//创建CAlayer动画CABasicAnimation*animation=[CABasicAnimationanimationWithKeyPath:@"bounds.size"];//设置初始大小[animationsetFromValue:[NSValue valueWi...
分类:
其他好文 时间:
2014-07-31 20:20:07
阅读次数:
235
iOS中的动画有两种实现方式,一种是UIView来实现动画,另一种动画是通过CALayer来实现,下面介绍两种动画的简单实现:一、UIView动画的实现UIView使用Context来实现动画关键代码://参数1动画名称参数2要实现动画的对象上下文
[UIViewbeginAnimations:@"attribute"context:_sh..
分类:
移动开发 时间:
2014-07-23 00:17:28
阅读次数:
689
?关键帧动画,也是CAPropertyAnimation的子类,与CABasicAnimation的区别是:–CABasicAnimation只能从一个数值(fromValue)变到另一个数值(toValue),而CAKeyframeAnimation会使用一个NSArray保存这些数值–?属性说明...
分类:
其他好文 时间:
2014-07-22 22:53:34
阅读次数:
2269
首先是html实现页面结构及主程序 1 2 3 4 5 基本动画-焦点图轮播 6 14 15 16 17 18 19 11111111111120 22222222222221 33333333333322 444444...
分类:
Web程序 时间:
2014-07-14 23:37:11
阅读次数:
263