<template>
<div class="goods-image">
<div
class="large"
v-show="show"
:style="[{ backgroundImage: `url(${images[currIndex]})` }, bgPosition]"
></div>
<div class="middle">
<img ref="target" :src="images[currIndex]" alt="" />
<div class="layer" v-show="show" :style="[position]"></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: 'GoodsImage',
props: {
images: {
type: Array,
default: () => [],
},
},
setup(props) {
const show = ref(false);
const currIndex = ref(0);
const target = ref(null);
const position = reactive({
top: 0,
left: 0,
});
const bgPosition = reactive({
backgroundPositionX: 0,
backgroundPositionY: 0,
});
const { elementX, elementY, isOutside } = useMouseInElement(target);
watch([elementX, elementY, isOutside], () => {
if (isOutside.value) {
show.value = false;
return;
}
show.value = true;
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;
}
bgPosition.backgroundPositionY = -position.top * 2 + 'px';
bgPosition.backgroundPositionX = -position.left * 2 + 'px';
position.top += 'px';
position.left += 'px';
});
return { currIndex, show, target, 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;
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>