但是当我点击放大图片的悬浮窗时悬浮窗关闭了
时间: 2023-09-26 12:15:20 浏览: 89
Android仿360桌面手机卫士悬浮窗效果
非常抱歉,我之前的回答仍然有误。为了实现点击放大图片的悬浮窗时不关闭悬浮窗,点击放大图片外的区域关闭悬浮窗,您可以在`imgContainer`元素上添加一个点击事件,当点击`imgContainer`元素时不执行关闭悬浮窗的逻辑。
请参考以下修改后的代码:
```javascript
function showPopup(src) {
if (isPopupVisible) {
return; // 如果悬浮窗已经显示,则直接返回
}
isPopupVisible = true; // 标记悬浮窗为显示状态
var overlay = document.createElement("div");
overlay.style.position = "fixed";
overlay.style.top = "0";
overlay.style.left = "0";
overlay.style.width = "100%";
overlay.style.height = "100%";
overlay.style.backgroundColor = "rgba(0, 0, 0, 0.8)";
overlay.style.zIndex = "9998"; // 设置遮罩层的z-index低于悬浮窗,但高于其他元素
var popup = document.createElement("div");
popup.style.position = "fixed";
popup.style.top = "50%";
popup.style.left = "50%";
popup.style.transform = "translate(-50%, -50%)";
popup.style.backgroundColor = "rgba(0, 0, 0, 0.8)";
popup.style.zIndex = "9999";
popup.style.width = "75%"; // 设置悬浮窗宽度为页面宽度的75%
popup.style.height = "75%"; // 设置悬浮窗高度为页面高度的75%
popup.style.overflow = "hidden";
var imgContainer = document.createElement("div");
imgContainer.style.display = "flex";
imgContainer.style.justifyContent = "center";
imgContainer.style.alignItems = "center";
imgContainer.style.backgroundColor = "transparent";
imgContainer.style.width = "100%";
imgContainer.style.height = "100%";
var img = document.createElement("img");
img.src = src;
img.alt = "放大照片";
img.style.maxWidth = "100vw";
img.style.maxHeight = "100vh";
var scale = 1; // 初始缩放比例
var scaleFactor = 0.1; // 每次滚动的缩放因子
// 点击放大图片时不执行关闭悬浮窗的逻辑
img.onclick = function (e) {
e.stopPropagation(); // 阻止事件冒泡
};
// 鼠标滚轮事件
img.onwheel = function (e) {
e.preventDefault(); // 阻止默认滚轮行为处理页面滚动
scale += e.deltaY > 0 ? -scaleFactor : scaleFactor; // 根据滚轮滚动方向确定缩放比例
scale = Math.max(scale, 0.1); // 最小缩放比例为0.1
img.style.transform = `scale(${scale})`;
};
// 关闭悬浮窗
overlay.onclick = function () {
document.body.removeChild(popup);
document.body.removeChild(overlay);
isPopupVisible = false; // 标记悬浮窗为隐藏状态
};
imgContainer.appendChild(img);
popup.appendChild(imgContainer);
document.body.appendChild(overlay);
document.body.appendChild(popup);
}
```
通过在`img`元素上添加点击事件监听器,并使用`e.stopPropagation()`阻止事件冒泡,实现了点击放大图片时不关闭悬浮窗的逻辑。
请将以上修改应用到您的代码中,并重新测试点击放大图片的功能。如果问题仍然存在,请提供更多详细信息,以便我能够更好地帮助您解决问题。非常抱歉给您带来的困扰。
阅读全文