我想建立一个像http://newsmap.jp这样的网站,是否有任何可以在地图UI中提供帮助的插件?

请注意,其中没有空白。

最佳答案

查看jQuery Masonry插件。只需直接在您的容器上调用它即可:

$('#container').masonry({
    itemSelector : '.itemsClassName',
    columnWidth : 240 // or whatever
});


in the documentation所述,还有更多选项。

关于jquery - newsmap.jp样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14550351/

10-13 00:44