我正在尝试添加一个基本的Jquery下拉菜单,根据您在页面上的位置激活按钮?所以在我滚动之后,菜单会在没有按钮点击的情况下下拉,它会根据我的屏幕在哪里下降?
答案 0 :(得分:0)
如果我正在阅读此处的问题,那么您可以使用窗口scrolltop这是另一个与此Add/remove class with jquery based on vertical scroll?类似的stackoverflow问题
你会使用像
这样的东西$(window).scroll(function() {
//either use window below or replace window with the element you want to toggle
var scroll = $(window).scrollTop();
//set the value from the top where you want to code to execute
if (scroll >= 500) {
//your toggle code here
} else {
//your untoggle code here for scrolling back up
}
});