我需要将图片显示在悬浮窗中心,而不是左上角
时间: 2024-04-16 10:23:46 浏览: 119
非常抱歉之前的回答有误。如果您希望将图片显示在悬浮窗中心,可以通过调整图片的位置来实现。
下面是经过修改的代码示例:
```javascript
function showPopup(src) {
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%
var imgContainer = document.createElement("div");
imgContainer.style.display = "flex";
imgContainer.style.justifyContent = "center";
imgContainer.style.alignItems = "center";
imgContainer.style.width = "100%";
imgContainer.style.height = "100%";
var img = document.createElement("img");
img.src = src;
img.alt = "放大照片";
img.style.maxWidth = "100%";
img.style.maxHeight = "100%";
var scale = 1; // 初始缩放比例
var scaleFactor = 0.1; // 每次滚动的缩放因子
// 鼠标滚轮事件
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})`;
};
// 关闭悬浮窗
popup.onclick = function () {
document.body.removeChild(popup);
};
imgContainer.appendChild(img);
popup.appendChild(imgContainer);
document.body.appendChild(popup);
}
```
在上述修改后的代码中,我们添加了一个名为`imgContainer`的容器元素,使用 Flex 布局将图片居中显示。通过设置容器元素的`display: flex`和`justifyContent: center`,可以实现将图片水平居中;通过设置容器元素的`alignItems: center`,可以实现将图片垂直居中。
这样,无论图片的尺寸如何,都可以将其居中显示在悬浮窗中。
非常抱歉之前的回答有误,希望这次修改能够满足您的需求!如有任何进一步的问题,请随时提问。
阅读全文