我有两个DIV
一个在右侧,另一个在左侧
我正在寻找一个给我链接的代码,通过点击此链接,两个div将扩展到100%(意味着其中一个将向下滑动)并再次点击它们将返回并排
我试过了:
<style>
#container {
width:100%;
height:500px;
border: 1px solid red;
}
#left {
width:45%;
height:500px;
float: left;
border: 1px solid blue;
}
#right {
width:45%;
height:500px;
float: left;
border: 1px solid yellow;
}
</style>
<script type="text/javascript" src="scripts/jquery-1.8.0.min.js"></script>
<div id="container">
<div id="left">
LEFT
</div>
<div id="right">
RIGHT
</div>
</div>
<script type="text/javascript">
$('#container').click(function(){
if (parseInt($('div#right').css('right'),10) < 0) {
// Bring right-column back onto display
$('div#right').animate({
right:'0%'
}, 1000);
$('div#left').animate({
width:'45%'
}, 600);
} else {
// Animate column off display.
$('div#right').animate({
right:'-45%'
}, 600);
$('div#left').animate({
width:'100%'
}, 1000);
}
});
</script>
答案 0 :(得分:2)
#container
{
width:300px;
}
#left,#right
{
background-color:#000;
width:10px;
height:100px;
overflow:hidden;
}
#left{
float:left;
}
#right{
float:right;
}
$("a").click(function(){
var $left = $("#left");
if($left.css("width")=="10px")
$left.animate({width: "100%"})
else
$left.animate({width: "10px"});
var $right = $("#right");
if($right.css("width")=="10px")
$right.animate({width: "100%"})
else
$right.animate({width: "10px"});
});