码迷,mamicode.com
首页 > Web开发 > 详细

我最喜欢用的css3之2D转换之translate用法

时间:2017-04-25 16:44:53      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:nsf   form   css   移动   用法   参数   top   span   class   

CSS3 2D 转换

div
{
transform: rotate(30deg);
-ms-transform: rotate(30deg);		/* IE 9 */
-webkit-transform: rotate(30deg);	/* Safari and Chrome */
-o-transform: rotate(30deg);		/* Opera */
-moz-transform: rotate(30deg);		/* Firefox */
}

translate() 方法

通过 translate() 方法,元素从其当前位置移动,根据给定的 left(x 坐标) 和 top(y 坐标) 位置参数:

实例 

div     
{
transform: translate(50px,100px);
-ms-transform: translate(50px,100px);		/* IE 9 */
-webkit-transform: translate(50px,100px);	/* Safari and Chrome */
-o-transform: translate(50px,100px);		/* Opera */
-moz-transform: translate(50px,100px);		/* Firefox */

直接复制到编辑器就可以出来效果

我最喜欢用的css3之2D转换之translate用法

标签:nsf   form   css   移动   用法   参数   top   span   class   

原文地址:http://www.cnblogs.com/cms2017/p/6762264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!