Skip to content

CenterAlignPlugin

将单选/多选的元素进行水平/垂直/水平垂直居中。

代码位置

center

将画布中当前选中的元素进行水平垂直居中操作。

js
canvasEditor.center()

centerH

将画布中当前选中的元素进行水平居中操作。

js
canvasEditor.centerH()

centerV

将画布中当前选中的元素进行垂直居中操作。

js
canvasEditor.centerV()

position

将画布中当前选中的元素按居中方式进行操作。

js
canvasEditor.position(name: 'centerH' | 'center' | 'centerV')

name参数说明:

名称类型默认值说明必传
center--水平垂直居中
centerH--水平居中
centerV--垂直居中

Released under the MIT License.