2018-03-22 CSS中的transform(转换)
2018-03-22 本文已影响0人
胡諾
对元素进行移动、缩放、转动、拉长或拉伸
方法1:translate():
元素从其当前位置移动,根据给定的 left(x 坐标) 和 top(y 坐标) 位置参数
有两个div,它们的css样式如下:
1 .before {
2 width: 70px;
3 height: 70px;
4 background-color: #8fbc8f;
5 }
6
7 .after {
8 width: 70px;
9 height: 70px;
10 background-color: #ffe4c4;
11 -webkit-transform: translate(50px, 30px);
12 -moz-transform: translate(50px, 30px);
13 -ms-transform: translate(50px, 30px);
14 -o-transform: translate(50px, 30px);
15 transform: translate(50px, 30px);
16 }
结果如下:
方法2:rotate()
元素顺时针旋转给定的角度。允许负值,元素将逆时针旋转。
有两个div,它们的css样式如下
1 .before {
2 width: 70px;
3 height: 70px;
4 background-color: #8fbc8f;
5 }
6
7 .after {
8 width: 70px;
9 height: 70px;
10 background-color: #ffe4c4;
11 -webkit-transform: rotate(20deg);
12 -moz-transform: rotate(20deg);
13 -ms-transform: rotate(20deg);
14 -o-transform: rotate(20deg);
15 transform: rotate(20deg);
16 }
结果如下:
方法3:scale()
元素的尺寸会增加或减少,根据给定的宽度(X 轴)和高度(Y 轴)参数
有两个div,它们的css样式如下:
1 .before {
2 width: 70px;
3 height: 70px;
4 background-color: #8fbc8f;
5 }
6
7 .after {
8 width: 70px;
9 height: 70px;
10 background-color: #ffe4c4;
11 -webkit-transform: scale(1.5, 0.8);/*宽度变为原来的1.5倍,高度变为原来的0.8倍*/
12 -moz-transform: scale(1.5, 0.8);
13 -ms-transform: scale(1.5, 0.8);
14 -o-transform: scale(1.5, 0.8);
15 transform: scale(1.5, 0.8);
16 }
结果如下:
方法4:skew()
元素翻转给定的角度,根据给定的水平线(X 轴)和垂直线(Y 轴)参数
1 .before {
2 width: 70px;
3 height: 70px;
4 background-color: #8fbc8f;
5 }
6
7 .after {
8 width: 70px;
9 height: 70px;
10 background-color: #ffe4c4;
11 -webkit-transform: skew(20deg, 20deg);/*围绕 X 轴把元素翻转20度,围绕 Y 轴翻转20度*/
12 -moz-transform: skew(20deg, 20deg);
13 -ms-transform: skew(20deg, 20deg);
14 -o-transform: skew(20deg, 20deg);
15 transform: skew(20deg, 20deg);
16 }
结果如下:
本文作者:王芳
<上一篇 | 目录 | 下一篇> |
---|