图像网格,每个图像的动态缩放

时间:2016-12-11 09:54:19

标签: javascript html css responsive-design image-gallery

我在网站http://www.danielkennedy.com/

找到了一个图片网格

图像非常适合每一行,并重新计算窗口大小的变化。

我想在我的网站上实现这一点。我尝试使用水平方向的同位素插件(http://isotope.metafizzy.co/layout-modes/masonryhorizontal.html),但它没有帮助。

有人能给我一些建议吗?

1 个答案:

答案 0 :(得分:0)

如果您希望在public Array() { int[][] array = new int[30][]; array[0] = new int[50]; array[1] = new int[50]; // ... you may use a loop, but to make it explicit array[29] = new int[50]; } 上为您的网站实施砌体厨房,您可以考虑使用 layoutMode:' fitRows'

项目按行排列,当屏幕调整大小时,行将垂直展开。

检查我的代码示例

public Array() {
        int[][] array = new int[30][];
        array[0] = new int[5];
        array[1] = new int[7];
        // ...
}

希望这有帮助