0064 2D转换综合写法以及顺序问题:translate rotate scale
Posted jianjie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0064 2D转换综合写法以及顺序问题:translate rotate scale相关的知识,希望对你有一定的参考价值。
2D
转换综合写法以及顺序问题
知识要点
- 同时使用多个转换,其格式为
transform: translate() rotate() scale()
- 顺序会影响到转换的效果(先旋转会改变坐标轴方向)
- 但我们同时有位置或者其他属性的时候,要将位移放到最前面
- 同时使用多个转换,其格式为
代码演示
div:hover { transform: translate(200px, 0) rotate(360deg) scale(1.2) }
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
div {
width: 200px;
height: 200px;
background-color: pink;
transition: all .5s;
}
div:hover {
/* transform: rotate(180deg) translate(150px, 50px); */
/* 我们同时有位移和其他属性,我们需要把位移放到最前面 */
transform: translate(150px, 50px) rotate(180deg) scale(1.2);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
以上是关于0064 2D转换综合写法以及顺序问题:translate rotate scale的主要内容,如果未能解决你的问题,请参考以下文章
affine_trans_pixel 和 affine_trans_point_2d的区别
ArcGIS微课1000例0064:基于ArcGISEarth采集矢量点线面
ArcGIS微课1000例0064:基于ArcGISEarth采集矢量点线面