vue3使用useMouseInElement實現(xiàn)圖片局部放大預覽效果實例代碼
更新時間:2023年03月18日 10:39:56 作者:jjw_zyfx
現(xiàn)在很多的項目里面圖片展示縮略圖,然后點擊實現(xiàn)圖片預覽,放大的功能,下面這篇文章主要給大家介紹了關于vue3使用useMouseInElement實現(xiàn)圖片局部放大預覽效果的相關資料,需要的朋友可以參考下
1、首先要安裝@vueuse/core
npm i @vueuse/core
2、實現(xiàn)過程如下:
<template>
<div class="goods-image">
<!-- 大圖 -->
<div v-show="show" class="large" :style="[{backgroundImage:`url(${images[currIndex]})`},largePosition]"></div>
<!-- 中圖 -->
<div class="middle" ref="target">
<img :src="images[currIndex]" alt="">
<!-- 遮罩色塊 -->
<div v-show="show" class="layer" :style="layerPosition"></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得到基于元素左上角的坐標和是否離開元素數(shù)據(jù)
const target = ref(null)
const { elementX, elementY, isOutside } = useMouseInElement(target)
watch([elementX, elementY, isOutside], () => {
// 5. 根據(jù)得到數(shù)據(jù)設置樣式數(shù)據(jù)和是否顯示數(shù)據(jù)
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>
4、效果如下:

總結
到此這篇關于vue3使用useMouseInElement實現(xiàn)圖片局部放大預覽效果的文章就介紹到這了,更多相關vue3圖片局部放大預覽內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
vue項目如何讀取本地json文件數(shù)據(jù)實例
很多時候我們需要從本地讀取JSON文件里面的內容,這篇文章主要給大家介紹了關于vue項目如何讀取本地json文件數(shù)據(jù)的相關資料,需要的朋友可以參考下2023-06-06
關于element-ui的隱藏組件el-scrollbar的使用
這篇文章主要介紹了關于element-ui的隱藏組件el-scrollbar的使用,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2019-05-05
vue.js調用python腳本并給腳本傳數(shù)據(jù)
在有些情況下需要使用不同的語言來完成一個項目,因此就有可能出現(xiàn)不同語言的程序之間的相互調用,下面這篇文章主要給大家介紹了關于vue.js調用python腳本并給腳本傳數(shù)據(jù)的相關資料,需要的朋友可以參考下2024-03-03

