我正在尝试在我的网站上添加一个隐藏的侧边栏。这正是我想要实现的目标:http: //demo.themebeans.com/pinto/但我希望它显示在悬停而不是单击中。只是而不是点击...只是希望我的访问者只是悬停在它上面。
这是我到目前为止所拥有的。我希望它的位置与我上面给出的示例相同。:( 有人可以帮忙吗?
#nav{width:200px;height:100%;position:absolute;top:0;left:0;z-index:100;background:#111;color:#fff;overflow:hidden;}
#nav ul{margin:0;padding:0;width:200px;margin:10px;list-style:none;}
#nav a span{margin:0 10px 0 0;}
#nav a{color:#fff;font-size:14px;text-decoration:none;}
jQuery:
$(function(){
$('#nav').hover(function(){
$(this).animate({width:'200px'},500);
},function(){
$(this).animate({width:'35px'},500);
}).trigger('mouseleave');
});
HTML:
<div id="nav">
Contents of the sidebar like the one on my sample.
</div>