1

第一次使用 jquery,我试图让基本的砌体风格工作,我的 html 中有以下代码......

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<head>

<title>_Box</title>

<link href="styles.css" rel="stylesheet" type="text/css">

<body>

<script src="jquery.js"></script>
<script src="masonry.js"></script>
<script>
$(window).ready(function() {
    $("#container").masonry({
          itemSelector: '.item',
          columnWidth: 240,
          isAnimated: !Modernizr.csstransitions
        });
});
</script>

<div id="container">

<div class="item"><img src="images/eventbox.png"></img></div>
<div class="item"><img src="images/forumbox.png"></img></div>
<div class="item"><img src="images/weekbox.png"></img></div>
<div class="item"><img src="images/weekbox.png"></img></div>
<div class="item"><img src="images/weekbox.png"></img></div>
<div class="item"><img src="images/weekbox.png"></img></div>
<div class="item"><img src="images/top10box.png"></img></div>
<div class="item"><img src="images/eventbox.png"></img></div>

</div>

</body>
</head>

以及我的css文件中的以下内容......

html {
  height:100%;
}

body {
  width:950px;
  height:100%;
  margin:0 auto;
  margin-top:100px;
  background-image: url(images/gridbg.png);
}

.item{
    float: left;
    padding: 5px;
    margin: 5px;
}

任何帮助都会很棒,因为我几乎遵循了教程但它不起作用

这就是它的样子

http://i47.tinypic.com/2jfdr7n.jpg

如果有帮助,图像的宽度和高度不同。

问题:我怎样才能得到砌体应该做的布局,很好地相互融合;砌体现场的例子。

4

1 回答 1

1

在 jQuery Masonry 示例中,它为包装器定义了额外的 CSS。

你尝试过不同的 CSS 定义吗?它可能正在寻找高度和宽度属性来获取页面上对象的测量值。

I would also suggest checking your implementation with a document ready and not window like what you have: $(window).ready(function() { >>> $(document).ready(function() {

Check out the source from the Masonry site. It's definitely different than what you have here and then use firebug or something similar to debug.

    var $items = $( items.join('') );
    $items.imagesLoaded(function(){
      $container
        .masonry( 'remove', $loadingItem ).masonry()
        .append( $items ).masonry( 'appended', $items, true );
    });
于 2013-03-29T22:57:44.313 回答