我的HTML代码
<body>
<div id="head-title">
<div id="box">
<a href="#" id="divhide">
<div>
<div class="whiteline"></div>
<div class="whiteline"></div>
<div class="whiteline"></div>
</div>
</a>
</div>
</div>
<div id="nav">
<?php echo $menu_item?>
</div>
<div id="main">
</div>
</body>
CSS
body
{
margin:0px;
}
#head-title
{
height: 65px;
width: 100%;
background-color: #E67817;
}
#nav
{
float:left;
width:100px;
height:100%;
background: #1e293d;
color: #465269;
}
#main
{
float:left;
width:100%;
height:100%;
}
#box
{
position:absolute;
left:30px;
top:14px;
width:50px;
height:50px;
}
.whiteline
{
margin-top:5px;
border:2px solid white;
width:25px;
}
我使用jquery
将div #nav移动到左边<script>
flag= true;
$('#divhide').click(function()
{
if(flag)
{
$("#nav").css("marginLeft","0px").animate(
{
marginLeft: "-100"
}, 1000);
flag = false;
}
else
{
$("#nav").css("marginLeft","-100px").animate(
{
marginLeft: "=0"
}, 1000);
flag = true;
}
});
</script>
但当div #nav向左移动时,右侧的div #main不会向左移动。并且div #nav没有正确地到达原始位置,即不是在1秒内它出现时我点击div所以没有像感觉一样移动。有什么建议吗?
答案 0 :(得分:1)
答案 1 :(得分:-1)
你应该更新你的javascript
marginLeft: "-100"
至于marginLeft: "-100px"
和marginLeft: "=0"
应为marginLeft: "0"
如果仍然“无效”,则表示导航的高度等于0 ...尝试将height:100%
更新为height:100px
以进行测试。