Zoom.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <div class="spec-preview">
  3. <!-- 此处懒加载无法显示图片 -->
  4. <el-image
  5. :src="imgUrl"
  6. alt=""
  7. fit="cover"
  8. style="width: 100%; height: 100%"
  9. ></el-image>
  10. <div
  11. class="event"
  12. @mousemove="handler"
  13. @mouseleave="leave"
  14. @click="$emit('handleViwer')"
  15. ></div>
  16. <!-- <div class="big">
  17. <img :src="imgUrl" alt="" ref="big" />
  18. </div> -->
  19. <!-- 遮罩层 -->
  20. <div class="mask" ref="mask"></div>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. name: "Zoom",
  26. props: {
  27. imgUrl: String,
  28. },
  29. data() {
  30. return {
  31. };
  32. },
  33. methods: {
  34. handler(event) {
  35. let mask = this.$refs.mask;
  36. // let bigImg = this.$refs.big;
  37. // 遮罩层可移动的范围:鼠标的当前坐标到该元素的距离(左侧、顶部)减去 遮罩层宽、高的一半(遮罩层始终是一个以鼠标为中心的正方形)
  38. let left = event.offsetX - mask.offsetWidth / 2;
  39. let top = event.offsetY - mask.offsetHeight / 2;
  40. // 约束遮罩层可移动的范围
  41. if (left <= 0) left = 0;
  42. if (left >= mask.offsetWidth) left = mask.offsetWidth;
  43. if (top <= 0) top = 0;
  44. if (top >= mask.offsetHeight) top = mask.offsetHeight;
  45. // 修改元素的left|top属性值
  46. mask.style.left = left + "px";
  47. mask.style.top = top + "px";
  48. // bigImg.style.left = -2 * left + "px";
  49. // bigImg.style.top = -2 * top + "px";
  50. let obj = {};
  51. obj.left = left;
  52. obj.top = top;
  53. obj.bigShow = true;
  54. this.$emit("sendStyle", obj);
  55. },
  56. leave() {
  57. let obj = {};
  58. obj.left = 0;
  59. obj.top = 0;
  60. obj.bigShow = false;
  61. this.$emit("sendStyle", obj);
  62. },
  63. },
  64. };
  65. </script>
  66. <style lang="scss" scoped>
  67. .spec-preview {
  68. position: relative;
  69. width: 100%;
  70. height: 100%;
  71. img {
  72. width: 100%;
  73. height: 100%;
  74. }
  75. .event {
  76. width: 100%;
  77. height: 100%;
  78. position: absolute;
  79. top: 0;
  80. left: 0;
  81. z-index: 1;
  82. }
  83. .mask {
  84. width: 50%;
  85. height: 50%;
  86. background-color: rgba(100, 149, 237, 0.3);
  87. position: absolute;
  88. left: 0;
  89. top: 0;
  90. display: none;
  91. }
  92. .big {
  93. width: 100%;
  94. height: 100%;
  95. position: absolute;
  96. top: -1px;
  97. left: 100%;
  98. border: 1px solid #aaa;
  99. overflow: hidden;
  100. z-index: 1;
  101. display: none;
  102. background: white;
  103. img {
  104. width: 200%;
  105. max-width: 200%;
  106. height: 200%;
  107. position: absolute;
  108. left: 0;
  109. top: 0;
  110. }
  111. }
  112. .event:hover ~ .mask,
  113. .event:hover ~ .big {
  114. display: block;
  115. }
  116. }
  117. </style>