-3

我需要帮助制作一个向右滑动以显示更多内容的垂直导航栏。我的目标是类似于这里的蓝色条:http ://www.teehanlax.com/labs/ 。单击侧导航栏时,导航栏滑出(向右),单击x按钮时向后(向左)滑出。

我的代码是:

<!--Am I implementing the jQuery right?-->
<!DOCTYPE HTML> <html> <head> <title>Nishad</title> 
<link rel="stylesheet" href="style.css"> 
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"> </script> 

$(function() { $('#nav').click(function() 
{ var leftMargin = ($(this).css('margin-left') === '0px') ? '-150px' : '0px'; $(this).animate({ 'margin-left' : leftMargin }, 500); 
}); 
}); ​ 
</head> <body> <div id="wrapper">
<div id="nav"></div> 
<div id="content"></div> 
</div> </body> </html>
4

1 回答 1

3

如果您检查该元素,您可以看到该网站正在使用负值作为导航的margin-left. 当您单击 时+,它们将设置margin-left0px

您可以通过附加单击事件处理程序来获得单击效果。滑动效果可以使用 jQuery 的animate(). 下面是我刚才提到的一个例子。

$(function() {

  $('#nav').click(function() {
  
  var leftMargin = ($(this).css('margin-left') === '0px') ? '-150px' : '0px';
                 
  $(this).animate({ 'margin-left' : leftMargin }, 500);
   
  });
   
});
    #wrapper {
        white-space: nowrap;
    }
    #nav, #content {
        height: 500px;
        display: inline-block;
    }
    #nav {
        width: 200px;
        margin-left: -150px;
        cursor: pointer;
        background: lightgreen;
    }
    #content {
        width: 500px;
        background: lightblue;
    }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="wrapper">
        <div id="nav"></div><div id="content"></div>
    </div>

jsFiddle 演示

于 2012-08-13T01:30:25.467 回答