zoukankan
html css js c++ java
UIView的基本属性及ANimation
frame属性:可以使用该属性改变尺寸和位置 相对于父视图
bounds:改变尺寸 相对自身
center:改变视图的位置
alpha:改变视图的透明度
backgroundColor:改变视图的背景
contentStretch:改变视图内容如何拉伸
//开始动画
[UIView beginAnimations:@"wap view" context:nil];
//设置时常
[UIView setAnimationDuration:1];
//设置动画
淡入淡出
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
//设置代理
[UIView setAnimationDelegate:self];
//设置翻转方向
[UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:manImageView cache:YES];
//动画结束
[UIView commitAnimations];
旋转动画
创建一个CGAffineTransform transform对象 CGAffineTransform transform;
//设置旋转度数
transform = CGAffineTransformRotate(manImageView.transform,M_PI/6.0);
//动画开始
[UIView beginAnimations:@"rotate" context:nil ];
//动画时常
[UIView setAnimationDuration:2];
//添加代理
[UIView setAnimationDelegate:self];
//获取transform的值
[manImageView setTransform:transform];
//关闭动画
[UIView commitAnimations];
偏移动画
[UIView beginAnimations:@"move" context:nil];
[UIView setAnimationDuration:2];
[UIView setAnimationDelegate:self];
//改变它的frame的x,y的值 manImageView.frame=CGRectMake(100,100, 120,100);
[UIView commitAnimations];
翻页动画
[UIView beginAnimations:@"curlUp" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];//指定动画曲线类型,该枚举是默认的,线性的是匀速的
//设置动画时常 [UIView setAnimationDuration:1];
[UIView setAnimationDelegate:self]; //设置翻页的方向
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:manImageView cache:YES];
//关闭动画
[UIView commitAnimations];
缩放动画
CGAffineTransform transform;
transform = CGAffineTransformScale(manImageView.transform,1.2,1.2);
[UIView beginAnimations:@"scale" context:nil];
[UIView setAnimationDuration:2];
[UIView setAnimationDelegate:self];
[manImageView setTransform:transform];
[UIView commitAnimations];
取反的动画效果是根据当前的动画取他的相反的动画
CGAffineTransform transform;
transform=CGAffineTransformInvert(manImageView.transform);
[UIView beginAnimations:@"Invert" context:nil];
[UIView setAnimationDuration:2];//动画时常
[UIView setAnimationDelegate:self];
[manImageView setTransform:transform];
//获取改变后的view的transform [UIView commitAnimations];//关闭动画
查看全文
相关阅读:
junit4的初级用法
junit3和junit4的区别总结
工作一年多了,我的技术博客终于开通了
VC++ 运行库官方安装包
文本编辑器通用快捷键
gcc命令介绍
MinGW安装与配置
windows常见快捷键
Notepad++配置C/C++
Notepad++快捷键
原文地址:https://www.cnblogs.com/wujie123/p/5330838.html
最新文章
面试知识点总结之数据库Mysql的优化
多线程的同步和死锁
laravel自定义缓存memcache(自带memcached,windows不支持)
linux下memcache的安装和启动
php添加memcache扩展
chrome模拟微信浏览器
Java介绍以及环境配置
计算机与编程概述
simpletransformers-可以简单快速搭建Transformer的库
JavaSE阶段的学习的思考与总结《一》(学习感悟以及资源路线)
热门文章
使用javaparser库来实现一个解析java项目的库
使用javalang做Java词法分析
Linux下启动和终止Jar包的脚本
Linux查看占用GPU的进程
Tensorflow指定显卡GPU运行(转载)
linux脚本需要交互的时候自动输入字符
解决最新版fitnesse无法运行测试用例的问题
maven的使用
junit4的进一步探讨
用junit Test Suite来组合测试
Copyright © 2011-2022 走看看