u-mask.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="u-mask" :style="[maskStyle]" :class="[show ? 'u-mask-show' : '']" @tap="click" @touchmove.stop.prevent>
  3. <slot />
  4. </view>
  5. </template>
  6. <script>
  7. /**
  8. * mask 遮罩
  9. * @description 创建一个遮罩层,用于强调特定的页面元素,并阻止用户对遮罩下层的内容进行操作,一般用于弹窗场景
  10. * @tutorial https://www.uviewui.com/components/mask.html
  11. * @property {Boolean} show 是否显示遮罩(默认false)
  12. * @property {String Number} z-index z-index 层级(默认1070)
  13. * @property {Object} custom-style 自定义样式对象,见上方说明
  14. * @property {String Number} duration 动画时长,单位毫秒(默认300)
  15. * @property {Boolean} zoom 是否使用scale对这招进行缩放(默认true)
  16. * @property {Boolean} mask-click-able 遮罩是否可点击,为false时点击不会发送click事件(默认true)
  17. * @event {Function} click mask-click-able为true时,点击遮罩发送此事件
  18. * @example <u-mask :show="show" @click="show = false"></u-mask>
  19. */
  20. export default {
  21. name: "u-mask",
  22. props: {
  23. // 是否显示遮罩
  24. show: {
  25. type: Boolean,
  26. default: false
  27. },
  28. // 层级z-index
  29. zIndex: {
  30. type: [Number, String],
  31. default: '1'
  32. },
  33. // 用户自定义样式
  34. customStyle: {
  35. type: Object,
  36. default () {
  37. return {}
  38. }
  39. },
  40. // 遮罩的动画样式, 是否使用使用zoom进行scale进行缩放
  41. zoom: {
  42. type: Boolean,
  43. default: true
  44. },
  45. // 遮罩的过渡时间,单位为ms
  46. duration: {
  47. type: [Number, String],
  48. default: 300
  49. },
  50. // 是否可以通过点击遮罩进行关闭
  51. maskClickAble: {
  52. type: Boolean,
  53. default: true
  54. }
  55. },
  56. computed: {
  57. maskStyle() {
  58. let style = {};
  59. style.backgroundColor = "rgba(0, 0, 0, 0.6)";
  60. style.zIndex = this.zIndex ? this.zIndex : this.$u.zIndex.mask;
  61. style.transition = `all ${this.duration / 1000}s ease-in-out`;
  62. // 缩放
  63. // if (this.zoom == true) style.transform = 'scale(1.2, 1.2)';
  64. // 判断用户传递的对象是否为空
  65. if (Object.keys(this.customStyle).length) style = { ...style,
  66. ...this.customStyle
  67. };
  68. // 合并自定义的样式
  69. //Object.assign(style, customStyle);
  70. return style;
  71. }
  72. },
  73. methods: {
  74. click() {
  75. if (!this.maskClickAble) return;
  76. this.$emit('click');
  77. }
  78. }
  79. }
  80. </script>
  81. <style lang="scss" scoped>
  82. .u-mask {
  83. position: fixed;
  84. top: 0;
  85. left: 0;
  86. right: 0;
  87. bottom: 0;
  88. opacity: 0;
  89. visibility: hidden;
  90. }
  91. .u-mask-show {
  92. opacity: 1;
  93. visibility: visible;
  94. transform: scale(1);
  95. }
  96. </style>