sceneButton.ts 517 B

123456789101112131415161718192021222324
  1. const sceneConfig = {
  2. isActive: false,
  3. name: '场景',
  4. size: 30,
  5. img: 'set',
  6. lineNum: null,
  7. isResizable: true, //禁止缩放
  8. // sticks:['tl', 'tm', 'tr', 'mr', 'br', 'bm', 'bl', 'ml'],
  9. aspectRatio: false, //禁止等比例缩放
  10. }
  11. const sceneCss = {
  12. top: 577,
  13. left: 142.5,
  14. width: 90,
  15. height: 90,
  16. borderRadius: 8,
  17. iconColor: "rgba(21, 140, 251, 1)",
  18. backgroundColor: '#fff',
  19. fontWeight: 500,
  20. textAlign: 'center',
  21. }
  22. export { sceneConfig, sceneCss }