创建像 RDP 菜单栏一样的 jquery 下拉菜单
我不太熟悉 jquery 所以我不太确定如何做到这一点。基本上,我希望一个 html 块隐藏在页面顶部,并伸出约 3px 的边缘(鼠标悬停的东西),当您将鼠标悬停在它上面时,隐藏的部分会向下滑动。
基本上我希望它像 RDP 全屏菜单栏一样工作。关于这样做的最佳方法是什么有什么想法吗?
I'm not all that familiar with jquery so I'm not quite sure how to do this. Basically, I want a block of html to stay hidden at the top of the page with a ~3px edge sticking out (something to mouseover), and when you mouse over it, the hidden section slides down.
Basically I want it to work like the RDP full screen menu bar works. Any thoughts on what the best way of doing this is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jquery:
样式:
html:
jquery:
style:
html:
您应该能够在 Jquery UI
http://jqueryui.com/demos/hide/ 的帮助下完成此操作
在下拉菜单中选择幻灯片。
You should be able to do it with the help of Jquery UI
http://jqueryui.com/demos/hide/
Pick slide in the dropdown menu.
感谢您的回复。通过对上面的代码进行一些调整,我发现了上面的 .hover() 方法。上面的 javascript 看起来像
Thanks for the responses. With a little tweaking of the above code I found out above the .hover() method. The above javascript would then look like