1、about选项卡
2、X File Settings选项卡
3、Textures & .fx files选项卡
4、Animation选项卡
5、Mesh选项卡
6、3DS Max Objects...
分类:
其他好文 时间:
2015-04-06 23:17:33
阅读次数:
366
一、背景:
合适的动画不仅更能吸引人们的眼球,也能让你的应用体验更为流畅,而将动画的效果做到极致,才能让用户感到使用你的应用是一种享受,而不是觉得生硬和枯燥。
二、动画技术分类:
按技术类型来进行分类,分为三类:JS动画,CSS3动画,html5动画,接下来分别对三类动画进行讲解。
1)JS动画
通过一个定时器setInte...
分类:
其他好文 时间:
2015-04-06 18:46:22
阅读次数:
246
1 package com.example.donghuatest; 2 3 import android.animation.ObjectAnimator; 4 import android.animation.PropertyValuesHolder; 5 import android.an.....
分类:
移动开发 时间:
2015-04-06 15:38:16
阅读次数:
282
视图动画,只有view可以使用。在android3.0以后,属性动画。ValueAnimation 可以记录属性变化的过程,所以他的对象是任何object。所以ValueAnimation 的真正目的就是对object的某个值做一系列根据setInterpolator的值变化函数。而ValueAni...
分类:
移动开发 时间:
2015-04-06 14:06:09
阅读次数:
166
该效果主要是用到了css3的动画animation以及transform中的角度变换rotate。html的结构十分简单,用到一个div,也用到了css3中的属性 border-radius 。这边只测试了chrome的效果。 Document 展示效果:
分类:
Web程序 时间:
2015-04-03 18:56:17
阅读次数:
121
What is jQuery?
jQuery is a fast, small, and feature-rich JavaScript library. Itmakes things like HTML document traversal and manipulation, event handling,animation, and Ajax much simpler with an easy-to-use API that works across amultitude of bro...
分类:
Web程序 时间:
2015-04-03 17:32:43
阅读次数:
109
- (void)popTitleView:(UIButton *)btn{ if (popView.superview ==self.view) { CATransition *animation =[CATransition animation]; animation.delegat...
分类:
其他好文 时间:
2015-04-03 13:22:54
阅读次数:
134
1.dialog布局dialog_loading.xml 1 2 12 13 18 25 -->26 2.图像的旋转动画loading_animation.xml 1 2 3 13 3.dialog的style1 2 4.dialog类 1 package com.j...
分类:
其他好文 时间:
2015-04-03 10:51:10
阅读次数:
115
iOS-Core-Animation-Advanced-Techniques 转 GitHub译文
iOS核心动画高级编程全集
iOS-核心动画高级编程/1-图层树
iOS-核心动画高级编程/2-寄宿图
iOS-核心动画高级编程/3-图层几何学
iOS-核心动画高级编程/4-视觉效果
iOS-核心动画高级编程/5-变换
iOS-核心动画高级...
分类:
移动开发 时间:
2015-04-02 20:53:49
阅读次数:
163
1.创建一个转场动画 CATransition *animation = [CATransition animation];2.动画时间 animation.duration = 0.8;3.动画类型 animation.type = @"rippleEffect";/* fademoveIn pu...
分类:
其他好文 时间:
2015-04-02 20:45:30
阅读次数:
137