gpt4 book ai didi

javascript - 当窗口大小调整时,优雅地自动调整 Galleria jQuery 幻灯片的大小

转载 作者:行者123 更新时间:2023-12-02 19:54:21 25 4
gpt4 key购买 nike

我正在使用 Galleria jQuery 幻灯片插件。我可以通过使用 $(document).width() 和 $(document).height() 指定宽度和高度来让幻灯片填充整个浏览器窗口,一切都按预期工作。代码如下:

Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
$("#gallery").galleria({
width: $(document).width(),
height: $(document).height()
});

我还添加了以下代码来处理窗口大小调整时的情况:

$(window).resize(function() {
location.reload();
});

这可行,但它会进行全屏刷新,并且不如 Galleria 的实现那么优雅,http://galleria.io/themes/fullscreen/ 。有没有办法调整幻灯片大小,而不必使用默认皮肤重新加载整个页面?

最佳答案

我没有办法测试这个。但像这样的事情可能值得一试。

var gal = $("#gallery").galleria({
width: $(document).width(),
height: $(document).height()
});

$(window).resize(function() {
gal.width = $(document).width();
gal.height = $(document).height();
});

关于javascript - 当窗口大小调整时,优雅地自动调整 Galleria jQuery 幻灯片的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8846313/

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