input.ts 435 B

123456789101112131415161718192021
  1. const configList1 = {
  2. isActive: false,
  3. type: 1,
  4. size: 30,
  5. color: "#158cfb",
  6. isResizable: true, //禁止缩放
  7. // sticks:['tl', 'tm', 'tr', 'mr', 'br', 'bm', 'bl', 'ml'],
  8. sticks: ['mr', 'ml'],
  9. aspectRatio: false, //禁止等比例缩放
  10. }
  11. const cssList1 = {
  12. top: 200,
  13. left: 30,
  14. width: 300,
  15. height: 32,
  16. borderRadius: 8,
  17. backgroundColor: '#fff',
  18. }
  19. export { configList1, cssList1 }