canvasFun.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <div>
  3. <div class='action-box'>
  4. <div class='small-block' @click='fitToWindow'>
  5. <i class="iconfont wanda-suofang"></i>
  6. </div>
  7. <div class='small-block' @click='showText'>
  8. <i v-if='isShow' class="iconfont wanda-yulan" title="隐藏店铺名称"></i>
  9. <i v-else class="iconfont wanda-yincang" title="显示店铺名称"></i>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. sliderVal: 1, // 滑块值
  19. active: '',
  20. min: 1,
  21. max: 200,
  22. everyScale: 1, // 每份的放大倍数
  23. isSwitch: false, // 是否开启吸附
  24. isShow: false
  25. }
  26. },
  27. methods: {
  28. // 适配大小
  29. fitToWindow() {
  30. this.$emit('fit')
  31. },
  32. // 下拉菜单
  33. handleCommand(command) {
  34. this.$emit(command)
  35. },
  36. // 是否开启吸附
  37. handleDivideCommand(commond) {
  38. this.$emit('changeAbsorb', this.isSwitch)
  39. },
  40. // 切割编辑
  41. divide() {
  42. this.active = 'divide'
  43. this.$emit('divide')
  44. },
  45. // 清除编辑
  46. clearDivide() {
  47. this.active = ''
  48. this.$emit('clearDivide')
  49. },
  50. // 减
  51. reduce() {
  52. this.sliderVal /= 1.1
  53. if (this.sliderVal < this.min) {
  54. this.sliderVal = this.min
  55. }
  56. this.scale(this.sliderVal)
  57. },
  58. // 缩放
  59. scale(val) {
  60. // 换算
  61. let scale = (val * this.everyScale) / 10
  62. this.$emit('scale', scale)
  63. },
  64. // 加
  65. plus() {
  66. this.sliderVal *= 1.1
  67. if (this.sliderVal > this.maxScale) {
  68. this.sliderVal = this.maxScale
  69. }
  70. this.scale(this.sliderVal)
  71. },
  72. showText() {
  73. this.isShow = !this.isShow
  74. this.$emit('showText', this.isShow)
  75. }
  76. },
  77. mounted() {}
  78. }
  79. </script>
  80. <style lang="less" scoped>
  81. .action-box {
  82. width: 40px;
  83. background: rgba(255, 255, 255, 1);
  84. box-shadow: 0px 2px 15px 0px rgba(31, 36, 41, 0.08);
  85. border-radius: 2px;
  86. margin: 0 auto;
  87. display: flex;
  88. flex-direction: column;
  89. align-items: center;
  90. overflow: hidden;
  91. .small-block {
  92. border-right: 1px solid #e4e5e7;
  93. padding: 12px;
  94. position: relative;
  95. cursor: pointer;
  96. i {
  97. width: 16px;
  98. height: 16px;
  99. display: inline-block;
  100. img {
  101. width: 100%;
  102. height: 100%;
  103. }
  104. }
  105. &::after {
  106. position: absolute;
  107. left: 50%;
  108. margin-left: -20%;
  109. bottom: 0;
  110. content: "";
  111. width: 14px;
  112. height: 1px;
  113. background: rgba(195, 199, 203, 1);
  114. border: 0px solid rgba(228, 229, 231, 1);
  115. }
  116. }
  117. .small-block:last-child {
  118. &::after {
  119. content: "";
  120. background: transparent;
  121. border: none;
  122. }
  123. }
  124. .small-block:active {
  125. background: #D2D9DF;
  126. }
  127. }
  128. </style>