一个动画 Label (走马观花)

UILabel中一个水平移动的Label

UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 300, 300)];

UILabel *label7 = [[UILabel alloc]initWithFrame:CGRectMake(50.0, 380.0, 200.0, 50.0)];

label.text = @"啦啦啦拉拉,阿拉拉啊 , ......";

label.backgroundColor = [UIColor blackColor];

label.textAlignment = UIBaselineAdjustmentAlignCenters;

label.textColor = [UIColor whiteColor];

[label7 setShadowColor:[UIColor redColor]];

label7.shadowOffset = CGSizeMake(1.0, 1.0);

CGRect frame = label7.frame;//一个矩形与Label7 一样的长 宽

frame.origin.x = -180;//这个矩形在父视图中X轴的开始动画位置

label.frame = frame;

[UIView beginAnimations:@"testAnimation" context:NULL];//开始动画

[UIView setAnimationDuration:8.8f];//设置动画持续的时间(速率)

[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.window cache:YES];//设置动画的翻转方式

[UIView setAnimationDelegate:self];//设置动画的运行的位置

[UIView setAnimationRepeatAutoreverses:YES];//是不是设置为自动反向运动

[UIView setAnimationRepeatCount:999999];//动画播放的次数

frame = label.frame;

frame.origin.x = 350;//矩形在父视图运动距离

label.frame = frame;

[UIView commitAnimations];

[self.window addSubview:label];

[label release];

时间: 2024-10-06 04:08:12

一个动画 Label (走马观花)的相关文章

一个动画效果

一个动画效果 by 伍雪颖 #define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width) @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100,

【Android】 给我一个Path,还你一个动画

转载请标明出处: http://blog.csdn.net/zxt0601/article/details/53040506 本文出自:[张旭童的CSDN](http://blog.csdn.net/zxt0601) 代码传送门:喜欢的话,随手点个star.多谢 https://github.com/mcxtzhang/PathAnimView 一 概述 原本只是想模仿一下我魂牵梦萦的StoreHouse效果,没想到意外撸出来一个工具库. 最简单用法,给我一个path(可以有多段),我还你一个动

关于为APP强制性的退出操作提供一个动画效果

网上还有一种退出程序的方法,就是使用未公开的API,这种方法更不靠谱,因为使用未公开API的使用是不能通过AppStore申核的,而且我在4.0版本中试验是无效的. 那么只能使用exit(0)退出应用.考虑到这种方式只是缺少退出时的动画效果,那么可以加上一个动画,动画完成后再调用exit退出程序. 在实际的开发过程中可能会有多个端登录,此时就会被迫挤下线,这个时候如何直接提示然后就退出应用就会使得用户体验很不和谐,为此我们可以添加一些动画效果来给予用户更友好的用户体验: view plainco

Android怎样播放多张图片形成一个动画

在Android里可以逐帧的播放图片,然后产生一种动态的效果,准备好几张连续的图片,然后在于源程序res文件夹下建立anim文件夹,然后新建一个XML XML代码如下: <?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot=&

js 封装一个动画函数

//动画函数---任意一个元素移动到指定的目标位置 //element为元素 target为位置 function carToon(element, target) { //设置一个定时器让他循环去增加 element.timeid = setInterval(function () { //拿到当前的位置(纯数字) var current = element.offsetLeft; //每次要移动的像素current var step = 10; //注意 这里是判断到底往那边走 如果当前的位

这是一个动画效果,一个圆在桌面上动

<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><style type="text/css">div{ width:200px; height:200px; position:relative; background:rgba(205,105,12,0.5); border-radius:100

仿电视关闭的一个动画效果

https://github.com/yy1300326388/TVOffAnimation https://github.com/yuantops/TopsTVPlayer https://github.com/tlasnier/TV-replay https://github.com/feer921/HomeTv https://github.com/MediaBrowser/MediaBrowser.AndroidTv https://github.com/RyanFu/tv_animat

模仿猫眼电影App一个动画效果

看真正的猫眼效果图 接下来看自己写的粗略图(不足的地方是这里是2个切换选项,如果需要3个切换的话,需要自定义控件,后续在更新...) 源码地址 http://download.csdn.net/download/u013210620/8795799 先看主页面xml布局文件--so easy activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xm

研究一个动画相册送给女朋友吧

css代码*{ margin:0; padding:0; } body{ max-width: 100%; min-width: 100%; height: 100%; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-size:100% 100%; position: absolute; margin-left: auto; margin-right: a