<template>
<div class="goods-image">
<div
class="large"
v-show="isShow"
:style="{
backgroundImage: `url(${imageList[imgIndex]})`,
backgroundPositionX: positionX + 'px',
backgroundPositionY: positionY + 'PX'
}"
></div>
<div class="middle" ref="target">
<img :src="imageList[imgIndex]" alt="" />
<div
class="layer"
v-show="isShow"
:style="{ left: left + 'px', top: top + 'px' }"
></div>
</div>
<div class="small">
<ul>
<li
v-for="(item, index) in imageList"
@mouseenter="getImgIndex(index)"
:key="index"
:class="{ active: imgIndex === index }"
>
<img :src="item" alt="" />
</li>
</ul>
</div>
</div>
</template>
<script>
import { ref, watch } from 'vue'
import { useMouseInElement } from '@vueuse/core'
export default {
name: 'XtxImageView',
props: {
imageList: {
type: Array,
default: () => []
}
},
setup (props) {
const imgIndex = ref(0)
const target = ref(null)
const isShow = ref(false)
const left = ref(0)
const top = ref(0)
const positionX = ref(0)
const positionY = ref(0)
const { elementX, elementY, isOutside } = useMouseInElement(target)
const getImgIndex = (index) => {
imgIndex.value = index
}
watch([elementX, elementY, isOutside], () => {
isShow.value = !isOutside.value
if (isOutside.value) {
return false
}
if (elementX.value > 300) {
left.value = 200
}
if (elementX.value < 100) {
left.value = 0
}
if (elementX.value < 300 && elementX.value > 100) {
left.value = elementX.value - 100
}
if (elementY.value > 300) {
top.value = 200
}
if (elementY.value < 100) {
top.value = 0
}
if (elementY.value < 300 && elementY.value > 100) {
top.value = elementY.value - 100
}
positionX.value = -left.value * 2
positionY.value = -top.value * 2
})
console.log(elementX, elementY, isOutside, 5555)
return {
imgIndex,
getImgIndex,
target,
elementX,
elementY,
isOutside,
isShow,
left,
top,
positionX,
positionY
}
}
}
</script>
<style scoped lang="less">
.goods-image {
width: 480px;
height: 400px;
position: relative;
display: flex;
.middle {
width: 400px;
height: 400px;
background: #f5f5f5;
}
.large {
position: absolute;
top: 0;
left: 412px;
width: 400px;
height: 400px;
z-index: 500;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-repeat: no-repeat;
// 背景图:盒子的大小 = 2:1 将来控制背景图的移动来实现放大的效果查看 background-position
background-size: 800px 800px;
background-color: #f8f8f8;
}
.layer {
width: 200px;
height: 200px;
background: rgba(0, 0, 0, 0.2);
// 绝对定位 然后跟随咱们鼠标控制left和top属性就可以让滑块移动起来
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>