一、需求描述:
在使用Vue進(jìn)行項(xiàng)目開發(fā)時(shí),需要把產(chǎn)品的照片進(jìn)行放大展示。方法圖片隨鼠標(biāo)在一定范圍內(nèi),移動(dòng)而放大。
二、需求分析:
例如:Handler 發(fā)送消息有兩種方式,分別是 Handler.obtainMessage()和 Handler.sendMessage(),其中 obtainMessage 方式當(dāng)數(shù)據(jù)量過大時(shí),由于 MessageQuene 大小也有限,所以當(dāng) message 處理不及時(shí)時(shí),會(huì)造成先傳的數(shù)據(jù)被覆蓋,進(jìn)而導(dǎo)致數(shù)據(jù)丟失。
三、解決方案:
<template>
<div class="spec-preview">
//圖片地址
<img :src="ImageList.imgUrl" />
//定義鼠標(biāo)事件
<div class="event" @mousemove="handler"></div>
//定義放大后的圖樣式
<div class="big">
//放大后的圖的原始圖片
<img :src="ImageList.imgUrl" ref="big" />
</div>
<!-- 遮罩層 -->
<div class="mask" ref="mask"></div>
</div>
</template>
<script>
export default {
name: "Zoom",
props: ["skuImageList"],
data() {
return {
currentIndex: 0,
};
},
computed: {
ImageList() {
return this.skuImageList[this.currentIndex] || {};
},
},
mounted() {
//全局事件總線獲取兄弟組件傳遞過來的索引值
this.$bus.$on("getIndex", (index) => {
this.currentIndex = index;
});
},
methods: {
//這里是放大方法的主要處理邏輯
handler(event) {
let mask = this.$refs.mask;
let big = this.$refs.big;
let left = event.offsetX - mask.offsetWidth / 2;
let top = event.offsetY - mask.offsetHeight / 2;
//約束范圍
if (left <= 0) left = 0;
if (left >= mask.offsetWidth) left = mask.offsetWidth;
if (top <= 0) top = 0;
if (top >= mask.offsetHeight) top = mask.offsetHeight;
mask.style.left = left + "px";
mask.style.top = top + "px";
big.style.left = -2 * left + "px";
big.style.top = -2 * top + "px";
console.log(left);
},
},
};
</script>
<style lang="less">
.spec-preview {
position: relative;
width: 400px;
height: 400px;
border: 1px solid #ccc;
img {
width: 100%;
height: 100%;
}
.event {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 998;
}
.mask {
width: 50%;
height: 50%;
background-color: rgba(171, 250, 171, 0.3);
position: absolute;
left: 0;
top: 0;
display: none;
}
.big {
width: 100%;
height: 100%;
position: absolute;
top: -1px;
left: 100%;
border: 1px solid #aaa;
overflow: hidden;
z-index: 998;
display: none;
background: white;
img {
width: 200%;
max-width: 200%;
height: 200%;
position: absolute;
left: 0;
top: 0;
}
}
.event:hover ~ .mask,
.event:hover ~ .big {
display: block;
}
}
</style>