http://www.learningjquery.com/2009/02/slide-elements-in-different-directions
我一直在上面试图让我的“托盘”工作无济于事。部分问题是我不希望其中一个div完全消失。我想要一个“托盘”,一个长矩形,当点击时,它将滑出包含名称的div。现在我把它设置为反向,但我无法弄清楚如何将扩展为默认隐藏的div(*我也不明白为什么它们是不同的颜色,但具有相同的CSS)。< / p>
HTML:
<div class ="collapsedTray">
<div class="expandTray">
Joey Joe Joe Jr.</br>
Tommy Thompson Thomas III</br>
Stephen Stephenson </br>
Cool Mo Dee Tomahawk Fire Marshall Bill</br>
</div>
CSS:
.collapsedTray {
width:10px;
height: 500px;
background:grey;
opacity:0.5;
position: absolute;
left:0;
}
.expandTray {
white-space: nowrap;
height: 500px;
background:grey;
opacity:0.5;
position: absolute;
left:0;
padding:8px;
}
Y:
$('.collapsedTray').click(function(){
var $lefty = $('.expandTray');
$lefty.animate({
left: parseInt($lefty.css('left'),10) == 0 ?
-$lefty.outerWidth() :
0
});
});
答案 0 :(得分:2)
在CSS中为左值赋予负值,以便默认隐藏它。
.expandTray {
left:-999px;
}
请参阅fiddle
不同的颜色是因为你在collapsedTray中有expandTray,两者的不透明度都是0.5,因此内部div有更多的不透明度。