origin
围绕原点旋转、缩放元素,同 CSS 的 transform-origin。
想围绕中心点绘制元素,请使用 around(优先级高)。
关键属性
origin: IAlign
| IUnitPointData
元素旋转、缩放的原点,相对元素的实际内容定位,基础元素及 Group 均支持。
ts
// 方位
type IAlign =
| 'top-left'
| 'top'
| 'top-right'
| 'right'
| 'bottom-right'
| 'bottom'
| 'bottom-left'
| 'left'
| 'center'
rect.origin = 'center'
// 坐标点
interface IUnitPointData {
type?: 'percent' | 'px'
x: number
y: number
}
rect.origin = {
type: 'percent',
x: 0.5, // 50% width 百分比坐标点
y: 0.5, // 50% height
}
rect.origin = {
x: 50, // 50px 像素值坐标点
y: 50, // 50px
}
示例
设置原点在中心
ts
import { Leafer, Rect, Frame } from 'leafer-ui'
const leafer = new Leafer({ view: window })
const rect = new Rect({
x: 25,
y: 25,
width: 50,
height: 50,
origin: 'center',
draggable: true,
fill: '#4DCB71'
})
leafer.add(new Frame({ width: 100, height: 100, fill: '#FF4A2C', children: [rect] }))
围绕原点缩放 1.5 倍
ts
import { Leafer, Rect, Frame } from 'leafer-ui'
const leafer = new Leafer({ view: window })
const rect = new Rect({
x: 25,
y: 25,
width: 50,
height: 50,
origin: 'center',
scale: 2, // scaleX = scaleY = 2
draggable: true,
fill: '#4DCB71'
})
leafer.add(new Frame({ width: 100, height: 100, fill: '#FF4A2C', children: [rect] }))
围绕原点旋转 45 度
ts
import { Leafer, Rect, Frame } from 'leafer-ui'
const leafer = new Leafer({ view: window })
const rect = new Rect({
x: 25,
y: 25,
width: 50,
height: 50,
origin: 'center',
rotation: 45,
draggable: true,
fill: '#4DCB71'
})
leafer.add(new Frame({ width: 100, height: 100, fill: '#FF4A2C', children: [rect] }))
围绕原点倾斜 45 度
ts
import { Leafer, Rect, Frame } from 'leafer-ui'
const leafer = new Leafer({ view: window })
const rect = new Rect({
x: 25,
y: 25,
width: 50,
height: 50,
origin: 'center',
skewX: 45,
draggable: true,
fill: '#4DCB71'
})
leafer.add(new Frame({ width: 100, height: 100, fill: '#FF4A2C', children: [rect] }))