props.js 261 B

123456789101112
  1. export var PopupDefaultProps = {
  2. visible: false,
  3. position: 'bottom',
  4. // 是否开启动画
  5. animation: true,
  6. // 动画持续时间
  7. duration: 300,
  8. // 弹窗层级
  9. zIndex: 998,
  10. showMask: true,
  11. animationType: 'transform',
  12. };