当用户点击侧边栏时,我想要切换或切换。似乎可以在这里实现这是我的代码:
jquery代码:
$(function() {
$("a#toggle").click(function(e) {
e.preventDefault();
$("#aside").slideToggle();
return false;
});
});
HTML:
<div class="wrap" id="aside">
<aside class="left-aside">
<header class="aside-header">
<h1>stuff</h1>
</header>
</aside>
</div>
<a id="toggle">Sidebar</a>
和css:
#aside {
display: none;
}
答案 0 :(得分:1)
你应该尝试滑动
.container