Skip to content

图片

PropertyDescriptionTypeRequiredDefault
src图片地址stringtrue""
width宽度numbertrue0
height高度numbertrue0
radius圆角numberfalse0

示例

Source Code
js
const rubbing = new Rubbing({
  selector: '#canvas',
  background: '#fff',
  width: 300,
  height: 215,
})
await rubbing.init()
rubbing.loadFrom({
  objects: [
    {
      type: 'image',
      left: 0,
      top: 0,
      width: 600,
      height: 200,
      src: 'https://source.unsplash.com/random/600x200',
    },
  ],
})