码迷,mamicode.com
首页 >  
搜索关键字:transform    ( 3699个结果
css3 翻转和旋转的区别
我以前一直以为旋转跟翻转一样,今日自己旋转了好久都发觉跟翻转差一点点,纠结了十几分钟才明白,只能怪自己的立体感太差了。 css3中的transform中有旋转,放缩,倾斜,平移的功能,分别对应的属性是:rotate,scale,skew,translate 旋转:(rotate)[cs...
分类:Web程序   时间:2015-05-10 12:45:42    阅读次数:192
CSS3动画中的位置设定问题
水平居中的不同方法实现: position: absolute; margin:0 auto; left:0; right:0;position: absolute; left:50%; -webkit-transform:translateX(-50%);垂直居中的几种实现方法: position...
分类:Web程序   时间:2015-05-07 21:46:28    阅读次数:111
hdu1217 Arbitrage
Problem Description Arbitrage is the use of discrepancies in currency exchange rates to transform one unit of a currency into more than one unit of the same currency. For example, suppose that 1 US D...
分类:其他好文   时间:2015-05-07 14:32:45    阅读次数:120
C++std函数之transform
/*//////////////////////////////// template OutputIterator transform ( InputIterator first1, // 源容器的起始地址 InputIterator last1, // 源容器的终止地址 ...
分类:编程语言   时间:2015-05-07 11:46:19    阅读次数:174
iOS layer
iOS layer ?//捏合手势方法。 -(void)pinchAction:(id)sender{ ? ??NSLog(@"捏合"); ? ??UIPinchGestureRecognizer?*pin=(UIPinchGestureRecognizer?*)sender; //? ? self.myImageV.transform=CGAffi...
分类:移动开发   时间:2015-05-06 19:49:50    阅读次数:174
JSBinding + SharpKit / 需要注意及不支持的列表
序列化 1 public int v; // 支持 2 public GameObject go; // 支持 3 public Transform trans; // 支持 4 public int[] arrInt; // 支持 5 public Vector3 v; // 支持 6 [Seri...
分类:Web程序   时间:2015-05-05 12:12:21    阅读次数:157
oracle impdp导入数据库报ora-14460错误
数据库版本:源库:11.2.0.4目的库:11.2.0.1操作如下:将源库expdp导出来的数据导入到目的库时,有分区的表报如下错误ORA-14460:onlyoneCOMPRESSorNOCOMPRESSclausemaybespecified解决方法:在impdp命令加transform=segment_attributes:n参数即可impdpusername/passworddirect..
分类:数据库   时间:2015-05-04 22:22:37    阅读次数:350
css 居中
ie9+ 自身垂直水平居中:position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);ie8+ 自身的垂直水平居中:(设定宽高) position: absolute; top: 0; left: 0; bottom: 0;....
分类:Web程序   时间:2015-05-04 11:23:47    阅读次数:123
样式整理
.errorCon { position: absolute; left: 0; width: 100%; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%);}
分类:其他好文   时间:2015-05-04 09:57:05    阅读次数:99
iOS开发UI篇—transframe属性(形变)
1.transform属性在OC中,通过transform属性可以修改对象的平移、缩放比例和旋转角度常用的创建transform结构体方法分两大类(1) 创建“基于控件初始位置”的形变CGAffineTransformMakeTranslation(平移)CGAffineTransformMakeS...
分类:移动开发   时间:2015-05-03 18:56:29    阅读次数:212
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!