123456789101112131415161718192021 |
- const configList1 = {
- isActive: false,
- type: 1,
- size: 30,
- color: "#158cfb",
- isResizable: true, //禁止缩放
- // sticks:['tl', 'tm', 'tr', 'mr', 'br', 'bm', 'bl', 'ml'],
- sticks: ['mr', 'ml'],
- aspectRatio: false, //禁止等比例缩放
- }
- const cssList1 = {
- top: 200,
- left: 30,
- width: 300,
- height: 32,
- borderRadius: 8,
- backgroundColor: '#fff',
- }
- export { configList1, cssList1 }
|