http://i.stack.imgur.com/FZyiq.jpg 我已经设计了这个布局,它在我的脑海中运行良好,但是当我尝试用CSS制作它时,事情变得有点奇怪。
我有一个宽度为960px的div,这个div是主要的内容包装器。我希望这个gallery div忽略宽度并拥有100%的浏览器分辨率(或其他宽度)。知道怎么做吗?
<div id="conteudo" >
<div class="exploded-wrapper" id="your_post_here_<?php the_ID(); ?>">
<div class="exploded" id="your_post_here_<?php the_ID(); ?>">
<a href="javascript:jQuery('.exploded-wrapper').hide();jQuery('.exploded').hide();" class="close"></a>
<div class="detalhes">
<div class="desc_wrapper">
<div class="desc">
<h2>
<?php the_title(); ?>
</h2>
<?php echo the_excerpt(); ?>
<div class="desc_pag">
<!--a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a-->
</div>
</div>
</div>
<div class="galeria">
<?php the_content('Read the rest of this entry »'); ?>
<script type="text/javascript">
jQuery(document).ready(function() {
// Using default configuration
//$("#galeria").carouFredSel();
// Using custom configuration
jQuery("#galeria").carouFredSel({
//items : 2,
circular : true,
direction : "left",
infinite : true,
scroll : {
items : 1,
easing : "swing",
pauseOnHover : true,
mousewheel : true
}
});
});
</script>
</div>
</div>
</div>
</div>
</div>
请使用firebug并检查http://ccrdesign.com/portifolio/
答案 0 :(得分:0)
一,您可以使用javascript / jquery手动将展开的div的宽度设置为页面宽度,但这非常hackish,我不推荐它。
我建议你重新考虑你的html结构。不要使用一个960px宽度的内容包装器,让你的包装器为100%宽度,交替排列的照片和“空”100%div,你可以轻松扩展。所以,抽象:
<div class="wrapper" style="width:100%;">
<div class="row1" style="width:960px;left:50%;margin-left:-480px;height:100px;">
<div class="gallery photo1">
<!-- row of photo content -->
</div>
</div>
<div class="row2" ... ...">
</div>
..etc..
</div>
你的javascript可以在点击的div下添加一个div并将样式设置为你想要的任何东西,并且由于父div将是100%宽度,你可以达到你想要的效果。这些将很好地叠加:)。