右にスライドしてより多くのコンテンツを表示する垂直ナビゲーション バーの作成についてサポートが必要です。ここの青いバーに似たものを目指しています: 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>