gpt4 book ai didi

javascript - 自动调整窗口大小?

转载 作者:行者123 更新时间:2023-11-30 18:46:59 26 4
gpt4 key购买 nike

是否可以使弹出窗口自动调整大小以适应页面中包含的所有文本和图像?

最佳答案

这将适用于 chrome。您可能需要为 IE 调整它。除了 $().ready 之外,它都是普通的 javascript,您可以将其替换为您想要的任何加载处理程序。

它假设您将弹出窗口的内容放在一个 div 中,并将显示设置为内联 block 。如果您有填充或边距,您可能需要添加更多的偏移量。

<div id="content" style="display: inline-block">...

$().ready(function() {
setTimeout(function() {
var heightOffset = window.outerHeight - window.innerHeight;
var widthOffset = window.outerWidth - window.innerWidth;
var height = document.getElementById("content").clientHeight + heightOffset;
var width = document.getElementById("content").clientWidth + widthOffset;
window.resizeTo(width, height);
}, 100);
});

关于javascript - 自动调整窗口大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5186156/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com