代码拉取完成,页面将自动刷新
同步操作将从 sohucw/tool-box 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 0 ;
padding: 0;
}
.wrap {
display: block;
width: 400px;
margin: 50px;
position: relative;
border: 1px solid #ccc;
}
.small-box {
/* position: relative; */
z-index: 1;
}
.float-box {
display: none;
width: 160px;
height: 120px;
position: absolute;
background: #ffffcc;
border: 1px solid #ccc;
opacity: 0.5;
pointer-events: none;
}
.mark {
position: absolute;
display: block;
width: 400px;
height: 225px;
background-color: #fff;
opacity: 0;
z-index: 10;
}
.small-img {
width: 400px;
display:block;
}
.big-box {
display: none;
position: absolute;
top: 0;
left: 460px;
width: 400px;
height: 300px;
overflow: hidden;
border: 1px solid #ccc;
z-index: 1;
pointer-events: none;
}
.big-box img {
position: absolute;
z-index: 5
}
</style>
</head>
<body>
<div class="wrap">
<!-- 小图 -->
<div class="small-box">
<!-- 放大镜 -->
<div class="float-box">鼠标上去的蒙层部分</div>
<img src="./image/big.jpg" class='small-img'/>
</div>
<!-- 显示 -->
<div class="big-box">
<img class="big-img" src="./image/big.jpg"/>
</div>
</div>
</body>
<script>
window.onload = function () {
var objWrap = document.querySelector(".wrap");
var objSmallBox = document.querySelector(".small-box");
var smallImg = document.querySelector(".small-img");
var objFloatBox = document.querySelector(".float-box");
var objBigBox = document.querySelector(".big-box");
var objBigBoxImage = document.querySelector(".big-img");
//移入事件
smallImg.onmouseover = function () {
objFloatBox.style.display = "block"
objBigBox.style.display = "block"
}
//移出事件
smallImg.onmouseout = function () {
objFloatBox.style.display = "none"
objBigBox.style.display = "none"
}
//移动事件
smallImg.onmousemove = function (e) {
var left = e.clientX- objWrap.offsetLeft - objFloatBox.offsetWidth / 2;
var top = e.clientY - objWrap.offsetTop - objFloatBox.offsetHeight / 2;
console.log('--------left--------', left);
console.log('--------top--------', top);
if (left < 0) {
left = 0;
} else if (left > (objSmallBox.offsetWidth - objFloatBox.offsetWidth)) {
left = objSmallBox.offsetWidth - objFloatBox.offsetWidth;
} if (top < 0) {
top = 0;
} else if (top > (objSmallBox.offsetHeight - objFloatBox.offsetHeight)) {
top = objSmallBox.offsetHeight - objFloatBox.offsetHeight;
}
/* 放大镜的位置 */
objFloatBox.style.left = left + "px";
objFloatBox.style.top = top + "px";
/* 计算百分比 */
var percentX = left / (objSmallBox.offsetWidth - objFloatBox.offsetWidth);
var percentY = top / (objSmallBox.offsetHeight - objFloatBox.offsetHeight);
console.log('objBigBoxImage.offsetWidth===', objBigBoxImage.offsetWidth, objBigBox.offsetWidth);
/* 显示图片相对应位置 */
objBigBoxImage.style.left = - percentX * (objBigBoxImage.offsetWidth - objBigBox.offsetWidth) + "px";
objBigBoxImage.style.top = - percentY * (objBigBoxImage.offsetHeight - objBigBox.offsetHeight) + "px";
}
}
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。