HTML:
<ul class="clients">
<li>
<div class="over left">Description</div>
<div class="inner">Image</div>
</li>
</ul>
CSS:
.clients { margin-right: -20px; }
.clients li {
float: left;
width: 128px;
height: 120px;
margin: 0 20px 20px 0;
border: 1px solid #c2c2c2;
}
.clients .over {
display: none;
position: absolute;
width: 250px;
font-size: 11px;
line-height: 16px;
background: #ecf5fb;
margin: 3px 0 0 3px;
padding: 18px;
z-index: 25;
}
.clients .right { margin: 3px 0 0 -161px; }
.clients .inner { width: 128px; height: 120px; overflow: hidden; }
所以,我们有一个浮动方块列表和一个弹出块,每个方块都有绝对位置。
JS:
jQuery(function($) {
$(".clients li").bind('mouseover mouseout',function(){$(this).find("div.over").toggle()});
});
如果过度表现,否则 - 隐藏。很好,但它必须更高级,我们应该捕获一个偏移并给 .over 块一个类:
.over
块添加“右”类。.over
块添加“左侧”类。我们怎么做?
答案 0 :(得分:2)
.offset()
会返回{ left: 200, top: 300 }
$(window).width()
返回窗口宽度
显然,你从.offset()
得到了左偏移量。您需要制作条件的正确偏移量应计算为:
offsetRight=$(window).width()-$(this).width()-$(this).offset().left;
所有在一起:
jQuery(function($) {
$(".clients li").bind('mouseover mouseout',function(){
$over=$("div.over",this);
$over.toggle();
//didn't get if it's the li's offset you need or the actual .over, replace $(this) with $over in next lines if you need that
offset=$(this).offset();
offsetRight=$(window).width()-$(this).width()-offset.left;
if (offsetRight<150){ $over.removeClass('left').addClass('right'); }
else { $over.removeClass('right').addClass('left'); }
});
});