91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue3怎么使用useMouseInElement實現圖片局部放大預覽效果

發布時間:2023-03-22 16:17:35 來源:億速云 閱讀:130 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“vue3怎么使用useMouseInElement實現圖片局部放大預覽效果”,內容詳細,步驟清晰,細節處理妥當,希望這篇“vue3怎么使用useMouseInElement實現圖片局部放大預覽效果”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

1、首先要安裝@vueuse/core

npm i @vueuse/core

2、實現過程如下:

<template>
  <div class="goods-image">
    <!-- 大圖 -->
    <div v-show="show" class="large" :></div>
    <!-- 中圖 -->
    <div class="middle" ref="target">
      <img :src="images[currIndex]" alt="">
      <!-- 遮罩色塊 -->
      <div v-show="show" class="layer" :></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 { reactive, ref, watch } from 'vue'
import { useMouseInElement } from '@vueuse/core'
export default {
  name: 'HelloWorld',
  props: {
    images: {
      type: Array,
      default: () => ['https://yanxuan-item.nosdn.127.net/a6939f41c48fa9e9c8f7a7ed855351f1.jpg',
        'https://yanxuan-item.nosdn.127.net/0cdfd546f8675669b87716114ad5900a.jpg',
        'https://yanxuan-item.nosdn.127.net/240983ccc935146a4795e3990d30468d.jpg',
        'https://yanxuan-item.nosdn.127.net/d46e005025a5d3b73c4781d31b327558.jpg',
        'https://yanxuan-item.nosdn.127.net/330913911087b44b0d817dd78233165f.png',]
    }
  },
  setup (props) {
    // 當前預覽圖的索引
    const currIndex = ref(0)

    // 1. 是否顯示遮罩和大圖
    const show = ref(false)
    // 2. 遮罩的坐標(樣式)
    const layerPosition = reactive({
      left: 0,
      top: 0
    })
    // 3. 大圖背景定位(樣式)
    const largePosition = reactive({
      backgroundPositionX: 0,
      backgroundPositionY: 0
    })
    // 4. 使用useMouseInElement得到基于元素左上角的坐標和是否離開元素數據
    const target = ref(null)
    const { elementX, elementY, isOutside } = useMouseInElement(target)
    watch([elementX, elementY, isOutside], () => {
      // 5. 根據得到數據設置樣式數據和是否顯示數據
      show.value = !isOutside.value
      // 計算坐標
      const position = { x: 0, y: 0 }

      if (elementX.value < 100) position.x = 0
      else if (elementX.value > 300) position.x = 200
      else position.x = elementX.value - 100

      if (elementY.value < 100) position.y = 0
      else if (elementY.value > 300) position.y = 200
      else position.y = elementY.value - 100
      // 給樣式賦值
      layerPosition.left = position.x + 'px'
      layerPosition.top = position.y + 'px'
      largePosition.backgroundPositionX = -2 * position.x + 'px'
      largePosition.backgroundPositionY = -2 * position.y + 'px'
    })

    return { currIndex, show, layerPosition, largePosition, target }
  }
}
</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;
    img{
      width: 100%;
      height: 100%;
    }
    //cursor: pointer;
    .layer {
      width: 200px;
      height: 200px;
      background: rgba(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;
      img{
        width: 100%;
        height: 100%;
      }
      &:hover,&.active {
        border: 2px solid #27BA9B;
      }
    }
  }
}
</style>

3、使用:在其他的.vue文件中導入組件即可使用

例如:

import HelloWorld from "@/components/HelloWorld.vue";
<HelloWorld ></HelloWorld>

讀到這里,這篇“vue3怎么使用useMouseInElement實現圖片局部放大預覽效果”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沙坪坝区| 文登市| 封丘县| 韶山市| 财经| 临泽县| 罗山县| 视频| 庆云县| 韶关市| 兴城市| 廉江市| 泰和县| 绥德县| 东阳市| 边坝县| 镇坪县| 临城县| 吉林市| 乌拉特中旗| 济宁市| 泸州市| 马关县| 溧阳市| 兴国县| 鱼台县| 长汀县| 高淳县| 浮山县| 德钦县| 华蓥市| 肥东县| 阿拉善盟| 当雄县| 信阳市| 衡阳县| 六安市| 三都| 石城县| 建水县| 东至县|