index.js 389 B

1234567891011121314151617181920212223
  1. Component({
  2. externalClasses: ['wr-class'],
  3. properties: {
  4. position: {
  5. type: String,
  6. value: 'static',
  7. },
  8. noMask: Boolean,
  9. type: {
  10. type: String,
  11. value: 'circular',
  12. },
  13. vertical: Boolean,
  14. size: {
  15. type: String,
  16. value: '50rpx',
  17. },
  18. backgroundColor: {
  19. type: String,
  20. value: 'rgba(0, 0, 0, .6)',
  21. },
  22. },
  23. });