/* --- name: Fx description: Contains the basic animation logic to be extended by all other Fx Classes. license: MIT-style license. req...
分类:
其他好文 时间:
2014-09-01 15:28:53
阅读次数:
223
-webkit-animation:仍旧是一个复合属性,-webkit-animation: name duration timing-function delay iteration_count direction;包括以下几个属性(1) -webkit-animation-name 这个属性的....
分类:
Web程序 时间:
2014-09-01 15:23:33
阅读次数:
366
主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar及其他如Dialog、Toast、EditText、TableView、Activity Animation等等。 ....
分类:
移动开发 时间:
2014-09-01 09:18:22
阅读次数:
470
************◆Margin属性:适合对象:所有元素是否继承:no百分比备注:相对于BOX的宽度2D Transform 方法实例div{transform: rotate(30deg);-ms-transform: rotate(30deg); /* IE 9 */-webkit-tr....
分类:
Web程序 时间:
2014-09-01 00:26:02
阅读次数:
249
1 // sa = new ScaleAnimation(0, 1, 0, 1,100,50); 2 // sa = new ScaleAnimation(0, 1, 0, 1, Animation.RELATIVE_TO_SELF, 0.5f, Animation.R...
分类:
其他好文 时间:
2014-08-31 21:26:51
阅读次数:
434
1 import android.view.animation.Animation; 2 import android.view.animation.Transformation; 3 4 public class CustomAnim extends Animation { 5 6 ...
分类:
其他好文 时间:
2014-08-31 21:24:41
阅读次数:
177
/*help*/.help{ position: relative; width: 130px; height: 130px; border: 6px #fff solid; border-radius: 50%; -webkit-animation: rotation 1s ease-in...
分类:
Web程序 时间:
2014-08-31 15:48:01
阅读次数:
520
/*Typing Loader*/div.typing { width: 400px; height: 300px; margin: 20px auto 500px; border: 2px #0f0 solid; background: #000; }.typing_loader{ width: ...
分类:
Web程序 时间:
2014-08-31 00:18:30
阅读次数:
819
/* Timer*/.timer{ width: 240px; height: 240px; background-color: transparent; box-shadow: inset 0px 0px 0px 2px #fff; border: 2px #f00 solid; border-r...
分类:
Web程序 时间:
2014-08-30 19:03:29
阅读次数:
4133
Android 平台提供了两类动画。 一类是Tween动画,就是对场景里的对象不断的进行图像变化来产生动画效果(旋转、平移、放缩和渐变)。第二类就是 Frame动画,即顺序的播放事先做好的图像,与gif图片原理相似。以下就讲一下Tweene Animations。主要类:Animation 动...
分类:
移动开发 时间:
2014-08-30 13:50:09
阅读次数:
435