vue3 封装购物网站查看图片放大镜效果组件

效果如下:
在这里插入图片描述
在这里插入图片描述

组件封装

<template>
  <div class="goods-image">
    <!-- 预览大图 -->
    <div class="large" :style='[{backgroundImage: `url(${images[currIndex]})`}, bgPosition]' v-show='isShow'></div>
    <div class="middle" ref='target'>
      <!-- 左侧的大图 -->
      <img :src="images[currIndex]" alt="">
      <!-- 遮罩层 -->
      <div class="layer" :style='[position]' v-show='isShow'></div>
    </div>
    <ul class="small">
      <!-- 右侧的缩略图 -->
      <li v-for="(img,i) in images" :key="img" :class="{active:i===currIndex}">
        <img @mouseenter="currIndex=i" :src="img" alt="">
      </li>
    </ul>
  </div>
</template>
<script>
import { ref, watch, reactive } from 'vue'
import { useMouseInElement } from '@vueuse/core'

export default {
  name: 'GoodsImage',
  props: {
    images: {
      type: Array,
      default: () => []
    }
  },
  setup (props) {
    const currIndex = ref(0)
    const target = ref(null)
    const isShow = ref(false)
    // 遮罩层的坐标
    const position = reactive({
      left: 0,
      top: 0
    })
    // 控制背景图的位置
    const bgPosition = reactive({
      backgroundPositionX: 0,
      backgroundPositionY: 0
    })
    const { elementX, elementY, isOutside } = useMouseInElement(target)
    // 侦听鼠标移动后信息
    watch([elementX, elementY, isOutside], () => {
      // 每次有值发生变化,就读取新的数据即可
      isShow.value = !isOutside.value
      // 鼠标在图片的区域之外,不需要计算坐标
      if (isOutside.value) return
      // 水平方向
      if (elementX.value < 100) {
        // 左边界
        position.left = 0
      } else if (elementX.value > 300) {
        // 右边界
        position.left = 200
      } else {
        // 中间的状态
        position.left = elementX.value - 100
      }
      // 垂直方向
      if (elementY.value < 100) {
        // 上边界
        position.top = 0
      } else if (elementY.value > 300) {
        // 下边界
        position.top = 200
      } else {
        // 中间的状态
        position.top = elementY.value - 100
      }
      // console.log(elementX.value, elementY.value, isOutside.value)
      // 计算预览大图背景的位置
      bgPosition.backgroundPositionX = -position.left * 2 + 'px'
      bgPosition.backgroundPositionY = -position.top * 2 + 'px'
      // 计算左侧遮罩层位置
      position.left += 'px'
      position.top += 'px'
    })
    return { currIndex, target, isShow, position, bgPosition }
  }
}
</script>
<style scoped lang="less">
.goods-image {
  width: 480px;
  height: 400px;
  position: relative;
  display: flex;
  z-index: 500;
  .large {
    position: absolute;
    top: 0;
    left: 412px;
    width: 400px;
    height: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-repeat: no-repeat;
    background-size: 800px 800px;
    background-color: #f8f8f8;
  }
  .middle {
    width: 400px;
    height: 400px;
    background: #f5f5f5;
    position: relative;
    cursor: move;
    .layer {
      width: 200px;
      height: 200px;
      background: rgba(0, 0, 0, 0.2);
      left: 0;
      top: 0;
      position: absolute;
    }
  }
  .small {
    width: 80px;
    li {
      width: 68px;
      height: 68px;
      margin-left: 12px;
      margin-bottom: 15px;
      cursor: pointer;
      &:hover,
      &.active {
        border: 2px solid @xtxColor;
      }
    }
  }
}
</style>

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值