gpt4 book ai didi

javascript - gridster,如何自动适应浏览器大小的变化?

转载 作者:数据小太阳 更新时间:2023-10-29 03:56:35 25 4
gpt4 key购买 nike

我正在尝试找到一种自动调整 gridster 容器大小的方法。

在某种程度上,当用户更改浏览器大小时,相应的 gridster 小部件也会调整大小。(其中列数和行数不变,但实际大小会)

我可以在浏览器尺寸变化时计算“widget_base_dimensions”的值,

但是我找不到更新/执行小部件以应对新尺寸的方法。

我在寻找是否有支持这种功能的功能,我注意到了

在 jquery.gridster.js 的第 3529 行,

/**
* Recalculates the offsets for the faux grid. You need to use it when
* the browser is resized.
*
* @method recalculate_faux_grid
* @return {Object} Returns the instance of the Gridster class.
*/
fn.recalculate_faux_grid = function() {
var aw = this.$wrapper.width();
this.baseX = ($(window).width() - aw) / 2;
this.baseY = this.$wrapper.offset().top;

$.each(this.faux_grid, $.proxy(function(i, coords) {
this.faux_grid[i] = coords.update({
left: this.baseX + (coords.data.col -1) * this.min_widget_width,
top: this.baseY + (coords.data.row -1) * this.min_widget_height
});

}, this));

return this;
};

我尝试了一些如何利用它们但失败了:(

如果有人已成功使用此代码或解决此问题,你能帮帮我吗?

最佳答案

长期存在issue #5在 Github 的项目问题跟踪上,标题为 Auto refresh - Responsive grid 和其他几个作为重复关闭。在那里您会找到人们发布的代码,他们试图为 gridster 添加响应能力。

关于javascript - gridster,如何自动适应浏览器大小的变化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20111175/

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