123456789101112131415161718192021222324 |
- const sceneConfig = {
- isActive: false,
- name: '场景',
- size: 30,
- img: 'set',
- lineNum: null,
- isResizable: true, //禁止缩放
- // sticks:['tl', 'tm', 'tr', 'mr', 'br', 'bm', 'bl', 'ml'],
- aspectRatio: false, //禁止等比例缩放
- }
- const sceneCss = {
- top: 577,
- left: 142.5,
- width: 90,
- height: 90,
- borderRadius: 8,
- iconColor: "rgba(21, 140, 251, 1)",
- backgroundColor: '#fff',
- fontWeight: 500,
- textAlign: 'center',
- }
- export { sceneConfig, sceneCss }
|